Report generated on 13-Jul-2023 at 16:24:40 by pytest-html v3.2.0
7550 tests ran in 151.58 seconds.
(Un)check the boxes to filter the results.
6738 passed, 0 skipped, 812 failed, 0 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1450] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[59521, 0, 'read'], [59522, 53, 'read'], [498, 232, 'write'], [497, 131, 'write'], [496, 113, 'write'], [6... 59521, 'ram': [[59521, 0], [59522, 53], [59523, 38], [65534, 21], [65535, 35], [8981, 229]], ...}, 'name': '00 35 26'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 59521, 0 59522, 53 59523, 38 65534, 21 65535, 35 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1451] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[8555, 0, 'read'], [8556, 201, 'read'], [332, 33, 'write'], [331, 109, 'write'], [330, 187, 'write'], [655...: 8555, 'ram': [[8555, 0], [8556, 201], [8557, 84], [65534, 41], [65535, 182], [46633, 106]], ...}, 'name': '00 c9 54'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 8555, 0 8556, 201 8557, 84 65534, 41 65535, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1452] | 0.60 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[510, 0, 'read'], [511, 79, 'read'], [352, 2, 'write'], [351, 0, 'write'], [350, 191, 'write'], [65534, 14...5, 'pc': 510, 'ram': [[510, 0], [511, 79], [512, 27], [65534, 149], [65535, 56], [14485, 6]], ...}, 'name': '00 4f 1b'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 510, 0 511, 79 512, 27 65534, 149 65535, 56 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1453] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[30402, 0, 'read'], [30403, 169, 'read'], [278, 118, 'write'], [277, 196, 'write'], [276, 177, 'write'], [...402, 'ram': [[30402, 0], [30403, 169], [30404, 211], [65534, 83], [65535, 210], [53843, 74]], ...}, 'name': '00 a9 d3'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 30402, 0 30403, 169 30404, 211 65534, 83 65535, 210 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1454] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[60613, 0, 'read'], [60614, 101, 'read'], [278, 236, 'write'], [277, 199, 'write'], [276, 59, 'write'], [6...613, 'ram': [[60613, 0], [60614, 101], [60615, 123], [65534, 117], [65535, 70], [18037, 20]], ...}, 'name': '00 65 7b'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 60613, 0 60614, 101 60615, 123 65534, 117 65535, 70 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1455] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[59404, 0, 'read'], [59405, 200, 'read'], [359, 232, 'write'], [358, 14, 'write'], [357, 53, 'write'], [65...04, 'ram': [[59404, 0], [59405, 200], [59406, 99], [65534, 222], [65535, 116], [29918, 170]], ...}, 'name': '00 c8 63'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 59404, 0 59405, 200 59406, 99 65534, 222 65535, 116 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1456] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[531, 0, 'read'], [532, 211, 'read'], [336, 2, 'write'], [335, 21, 'write'], [334, 54, 'write'], [65534, 2...'pc': 531, 'ram': [[531, 0], [532, 211], [533, 208], [65534, 225], [65535, 14], [3809, 229]], ...}, 'name': '00 d3 d0'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 531, 0 532, 211 533, 208 65534, 225 65535, 14 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1457] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[12175, 0, 'read'], [12176, 136, 'read'], [336, 47, 'write'], [335, 145, 'write'], [334, 53, 'write'], [65...2175, 'ram': [[12175, 0], [12176, 136], [12177, 46], [65534, 40], [65535, 52], [13352, 196]], ...}, 'name': '00 88 2e'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 12175, 0 12176, 136 12177, 46 65534, 40 65535, 52 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1458] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[43998, 0, 'read'], [43999, 103, 'read'], [299, 171, 'write'], [298, 224, 'write'], [297, 118, 'write'], [...98, 'ram': [[43998, 0], [43999, 103], [44000, 194], [65534, 46], [65535, 179], [45870, 252]], ...}, 'name': '00 67 c2'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 43998, 0 43999, 103 44000, 194 65534, 46 65535, 179 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1459] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[13714, 0, 'read'], [13715, 169, 'read'], [467, 53, 'write'], [466, 148, 'write'], [465, 112, 'write'], [6...714, 'ram': [[13714, 0], [13715, 169], [13716, 14], [65534, 97], [65535, 158], [40545, 243]], ...}, 'name': '00 a9 0e'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 13714, 0 13715, 169 13716, 14 65534, 97 65535, 158 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1460] | 0.53 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[53502, 0, 'read'], [53503, 243, 'read'], [307, 209, 'write'], [306, 0, 'write'], [305, 181, 'write'], [65...3502, 'ram': [[53502, 0], [53503, 243], [53504, 36], [65534, 20], [65535, 143], [36628, 86]], ...}, 'name': '00 f3 24'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 53502, 0 53503, 243 53504, 36 65534, 20 65535, 143 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1461] | 0.57 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[33199, 0, 'read'], [33200, 240, 'read'], [381, 129, 'write'], [380, 177, 'write'], [379, 181, 'write'], [...99, 'ram': [[33199, 0], [33200, 240], [33201, 226], [65534, 211], [65535, 100], [25811, 45]], ...}, 'name': '00 f0 e2'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 33199, 0 33200, 240 33201, 226 65534, 211 65535, 100 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1462] | 0.49 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[56785, 0, 'read'], [56786, 135, 'read'], [370, 221, 'write'], [369, 211, 'write'], [368, 187, 'write'], [...85, 'ram': [[56785, 0], [56786, 135], [56787, 75], [65534, 126], [65535, 254], [65150, 197]], ...}, 'name': '00 87 4b'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 56785, 0 56786, 135 56787, 75 65534, 126 65535, 254 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1463] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[46532, 0, 'read'], [46533, 13, 'read'], [450, 181, 'write'], [449, 198, 'write'], [448, 123, 'write'], [6...46532, 'ram': [[46532, 0], [46533, 13], [46534, 219], [65534, 32], [65535, 150], [38432, 8]], ...}, 'name': '00 0d db'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 46532, 0 46533, 13 46534, 219 65534, 32 65535, 150 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1464] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[28841, 0, 'read'], [28842, 113, 'read'], [256, 112, 'write'], [511, 171, 'write'], [510, 187, 'write'], [...41, 'ram': [[28841, 0], [28842, 113], [28843, 157], [65534, 203], [65535, 93], [24011, 124]], ...}, 'name': '00 71 9d'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 28841, 0 28842, 113 28843, 157 65534, 203 65535, 93 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1465] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[36527, 0, 'read'], [36528, 178, 'read'], [412, 142, 'write'], [411, 177, 'write'], [410, 112, 'write'], [...6527, 'ram': [[36527, 0], [36528, 178], [36529, 74], [65534, 95], [65535, 195], [50015, 33]], ...}, 'name': '00 b2 4a'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 36527, 0 36528, 178 36529, 74 65534, 95 65535, 195 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1466] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[55890, 0, 'read'], [55891, 132, 'read'], [433, 218, 'write'], [432, 84, 'write'], [431, 61, 'write'], [65...55890, 'ram': [[55890, 0], [55891, 132], [55892, 188], [65534, 233], [65535, 2], [745, 124]], ...}, 'name': '00 84 bc'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 55890, 0 55891, 132 55892, 188 65534, 233 65535, 2 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1467] | 0.56 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[30901, 0, 'read'], [30902, 235, 'read'], [333, 120, 'write'], [332, 183, 'write'], [331, 186, 'write'], [...1, 'ram': [[30901, 0], [30902, 235], [30903, 223], [65534, 200], [65535, 245], [62920, 214]], ...}, 'name': '00 eb df'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 30901, 0 30902, 235 30903, 223 65534, 200 65535, 245 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1468] | 0.57 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[38434, 0, 'read'], [38435, 148, 'read'], [405, 150, 'write'], [404, 36, 'write'], [403, 181, 'write'], [6...4, 'ram': [[38434, 0], [38435, 148], [38436, 114], [65534, 237], [65535, 160], [41197, 238]], ...}, 'name': '00 94 72'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 38434, 0 38435, 148 38436, 114 65534, 237 65535, 160 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1469] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[24501, 0, 'read'], [24502, 172, 'read'], [392, 95, 'write'], [391, 183, 'write'], [390, 56, 'write'], [65...01, 'ram': [[24501, 0], [24502, 172], [24503, 121], [65534, 69], [65535, 118], [30277, 152]], ...}, 'name': '00 ac 79'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 24501, 0 24502, 172 24503, 121 65534, 69 65535, 118 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1470] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[55082, 0, 'read'], [55083, 191, 'read'], [336, 215, 'write'], [335, 44, 'write'], [334, 184, 'write'], [6...5082, 'ram': [[55082, 0], [55083, 191], [55084, 21], [65534, 12], [65535, 207], [53004, 41]], ...}, 'name': '00 bf 15'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 55082, 0 55083, 191 55084, 21 65534, 12 65535, 207 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1471] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[43909, 0, 'read'], [43910, 33, 'read'], [397, 171, 'write'], [396, 135, 'write'], [395, 185, 'write'], [6...43909, 'ram': [[43909, 0], [43910, 33], [43911, 52], [65534, 89], [65535, 165], [42329, 82]], ...}, 'name': '00 21 34'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 43909, 0 43910, 33 43911, 52 65534, 89 65535, 165 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1472] | 0.56 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[10730, 0, 'read'], [10731, 147, 'read'], [489, 41, 'write'], [488, 236, 'write'], [487, 54, 'write'], [65...30, 'ram': [[10730, 0], [10731, 147], [10732, 186], [65534, 191], [65535, 222], [57023, 73]], ...}, 'name': '00 93 ba'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 10730, 0 10731, 147 10732, 186 65534, 191 65535, 222 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1473] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[51201, 0, 'read'], [51202, 124, 'read'], [359, 200, 'write'], [358, 3, 'write'], [357, 191, 'write'], [65...01, 'ram': [[51201, 0], [51202, 124], [51203, 247], [65534, 82], [65535, 127], [32594, 166]], ...}, 'name': '00 7c f7'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 51201, 0 51202, 124 51203, 247 65534, 82 65535, 127 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1474] | 0.59 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[13108, 0, 'read'], [13109, 37, 'read'], [417, 51, 'write'], [416, 54, 'write'], [415, 180, 'write'], [655...3108, 'ram': [[13108, 0], [13109, 37], [13110, 103], [65534, 188], [65535, 77], [19900, 56]], ...}, 'name': '00 25 67'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 13108, 0 13109, 37 13110, 103 65534, 188 65535, 77 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1475] | 0.61 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[20076, 0, 'read'], [20077, 92, 'read'], [341, 78, 'write'], [340, 110, 'write'], [339, 187, 'write'], [65...0076, 'ram': [[20076, 0], [20077, 92], [20078, 158], [65534, 63], [65535, 58], [14911, 148]], ...}, 'name': '00 5c 9e'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 20076, 0 20077, 92 20078, 158 65534, 63 65535, 58 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1476] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[45969, 0, 'read'], [45970, 111, 'read'], [415, 179, 'write'], [414, 147, 'write'], [413, 118, 'write'], [...45969, 'ram': [[45969, 0], [45970, 111], [45971, 70], [65534, 1], [65535, 172], [44033, 88]], ...}, 'name': '00 6f 46'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 45969, 0 45970, 111 45971, 70 65534, 1 65535, 172 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1477] | 0.60 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[36431, 0, 'read'], [36432, 59, 'read'], [256, 142, 'write'], [511, 81, 'write'], [510, 116, 'write'], [65...6431, 'ram': [[36431, 0], [36432, 59], [36433, 56], [65534, 73], [65535, 116], [29769, 248]], ...}, 'name': '00 3b 38'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 36431, 0 36432, 59 36433, 56 65534, 73 65535, 116 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1478] | 0.47 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[55842, 0, 'read'], [55843, 119, 'read'], [441, 218, 'write'], [440, 36, 'write'], [439, 180, 'write'], [6...42, 'ram': [[55842, 0], [55843, 119], [55844, 206], [65534, 147], [65535, 123], [31635, 26]], ...}, 'name': '00 77 ce'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 55842, 0 55843, 119 55844, 206 65534, 147 65535, 123 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1479] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[52091, 0, 'read'], [52092, 51, 'read'], [332, 203, 'write'], [331, 125, 'write'], [330, 186, 'write'], [6...091, 'ram': [[52091, 0], [52092, 51], [52093, 170], [65534, 89], [65535, 241], [61785, 190]], ...}, 'name': '00 33 aa'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 52091, 0 52092, 51 52093, 170 65534, 89 65535, 241 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1480] | 0.59 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[44532, 0, 'read'], [44533, 182, 'read'], [284, 173, 'write'], [283, 246, 'write'], [282, 177, 'write'], [...532, 'ram': [[44532, 0], [44533, 182], [44534, 169], [65534, 21], [65535, 206], [52757, 37]], ...}, 'name': '00 b6 a9'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 44532, 0 44533, 182 44534, 169 65534, 21 65535, 206 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1481] | 0.56 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[25933, 0, 'read'], [25934, 106, 'read'], [483, 101, 'write'], [482, 79, 'write'], [481, 61, 'write'], [65...33, 'ram': [[25933, 0], [25934, 106], [25935, 85], [65534, 123], [65535, 135], [34683, 187]], ...}, 'name': '00 6a 55'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 25933, 0 25934, 106 25935, 85 65534, 123 65535, 135 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1482] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[20936, 0, 'read'], [20937, 34, 'read'], [383, 81, 'write'], [382, 202, 'write'], [381, 186, 'write'], [65...20936, 'ram': [[20936, 0], [20937, 34], [20938, 114], [65534, 32], [65535, 19], [4896, 172]], ...}, 'name': '00 22 72'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 20936, 0 20937, 34 20938, 114 65534, 32 65535, 19 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1483] | 0.61 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[29611, 0, 'read'], [29612, 146, 'read'], [370, 115, 'write'], [369, 173, 'write'], [368, 114, 'write'], [...1, 'ram': [[29611, 0], [29612, 146], [29613, 254], [65534, 127], [65535, 116], [29823, 171]], ...}, 'name': '00 92 fe'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 29611, 0 29612, 146 29613, 254 65534, 127 65535, 116 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1484] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[54583, 0, 'read'], [54584, 179, 'read'], [493, 213, 'write'], [492, 57, 'write'], [491, 63, 'write'], [65...583, 'ram': [[54583, 0], [54584, 179], [54585, 35], [65534, 64], [65535, 212], [54336, 110]], ...}, 'name': '00 b3 23'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 54583, 0 54584, 179 54585, 35 65534, 64 65535, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1485] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[34446, 0, 'read'], [34447, 212, 'read'], [478, 134, 'write'], [477, 144, 'write'], [476, 254, 'write'], [...4446, 'ram': [[34446, 0], [34447, 212], [34448, 195], [65534, 13], [65535, 40], [10253, 32]], ...}, 'name': '00 d4 c3'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 34446, 0 34447, 212 34448, 195 65534, 13 65535, 40 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1486] | 0.51 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[25434, 0, 'read'], [25435, 169, 'read'], [329, 99, 'write'], [328, 92, 'write'], [327, 181, 'write'], [65...5434, 'ram': [[25434, 0], [25435, 169], [25436, 169], [65534, 85], [65535, 28], [7253, 193]], ...}, 'name': '00 a9 a9'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 25434, 0 25435, 169 25436, 169 65534, 85 65535, 28 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1487] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[6524, 0, 'read'], [6525, 5, 'read'], [328, 25, 'write'], [327, 126, 'write'], [326, 55, 'write'], [65534,...': 6524, 'ram': [[6524, 0], [6525, 5], [6526, 83], [65534, 238], [65535, 157], [40430, 218]], ...}, 'name': '00 05 53'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 6524, 0 6525, 5 6526, 83 65534, 238 65535, 157 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1488] | 0.59 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[59248, 0, 'read'], [59249, 228, 'read'], [258, 231, 'write'], [257, 114, 'write'], [256, 125, 'write'], [...9248, 'ram': [[59248, 0], [59249, 228], [59250, 58], [65534, 88], [65535, 46], [11864, 188]], ...}, 'name': '00 e4 3a'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 59248, 0 59249, 228 59250, 58 65534, 88 65535, 46 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1489] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[39101, 0, 'read'], [39102, 110, 'read'], [319, 152, 'write'], [318, 191, 'write'], [317, 255, 'write'], [...101, 'ram': [[39101, 0], [39102, 110], [39103, 72], [65534, 114], [65535, 121], [31090, 98]], ...}, 'name': '00 6e 48'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 39101, 0 39102, 110 39103, 72 65534, 114 65535, 121 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1490] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[33864, 0, 'read'], [33865, 48, 'read'], [394, 132, 'write'], [393, 74, 'write'], [392, 55, 'write'], [655...33864, 'ram': [[33864, 0], [33865, 48], [33866, 43], [65534, 155], [65535, 64], [16539, 30]], ...}, 'name': '00 30 2b'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 33864, 0 33865, 48 33866, 43 65534, 155 65535, 64 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1491] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[23151, 0, 'read'], [23152, 12, 'read'], [464, 90, 'write'], [463, 113, 'write'], [462, 126, 'write'], [65...151, 'ram': [[23151, 0], [23152, 12], [23153, 244], [65534, 156], [65535, 243], [62364, 84]], ...}, 'name': '00 0c f4'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 23151, 0 23152, 12 23153, 244 65534, 156 65535, 243 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1492] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[30528, 0, 'read'], [30529, 22, 'read'], [421, 119, 'write'], [420, 66, 'write'], [419, 52, 'write'], [655...': 30528, 'ram': [[30528, 0], [30529, 22], [30530, 250], [65534, 36], [65535, 0], [36, 149]], ...}, 'name': '00 16 fa'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 30528, 0 30529, 22 30530, 250 65534, 36 65535, 0 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1493] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[56779, 0, 'read'], [56780, 114, 'read'], [256, 221, 'write'], [511, 205, 'write'], [510, 58, 'write'], [6...79, 'ram': [[56779, 0], [56780, 114], [56781, 147], [65534, 53], [65535, 155], [39733, 181]], ...}, 'name': '00 72 93'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 56779, 0 56780, 114 56781, 147 65534, 53 65535, 155 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1494] | 0.56 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[34991, 0, 'read'], [34992, 38, 'read'], [482, 136, 'write'], [481, 177, 'write'], [480, 127, 'write'], [6...34991, 'ram': [[34991, 0], [34992, 38], [34993, 94], [65534, 156], [65535, 113], [29084, 6]], ...}, 'name': '00 26 5e'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 34991, 0 34992, 38 34993, 94 65534, 156 65535, 113 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1495] | 0.55 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[16016, 0, 'read'], [16017, 148, 'read'], [304, 62, 'write'], [303, 146, 'write'], [302, 117, 'write'], [6...16, 'ram': [[16016, 0], [16017, 148], [16018, 134], [65534, 192], [65535, 123], [31680, 67]], ...}, 'name': '00 94 86'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 16016, 0 16017, 148 16018, 134 65534, 192 65535, 123 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1496] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[60592, 0, 'read'], [60593, 1, 'read'], [273, 236, 'write'], [272, 178, 'write'], [271, 118, 'write'], [65...592, 'ram': [[60592, 0], [60593, 1], [60594, 255], [65534, 221], [65535, 193], [49629, 212]], ...}, 'name': '00 01 ff'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 60592, 0 60593, 1 60594, 255 65534, 221 65535, 193 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1497] | 0.57 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[37043, 0, 'read'], [37044, 37, 'read'], [262, 144, 'write'], [261, 181, 'write'], [260, 49, 'write'], [65...43, 'ram': [[37043, 0], [37044, 37], [37045, 212], [65534, 150], [65535, 201], [51606, 200]], ...}, 'name': '00 25 d4'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 37043, 0 37044, 37 37045, 212 65534, 150 65535, 201 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1498] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[35666, 0, 'read'], [35667, 243, 'read'], [484, 139, 'write'], [483, 84, 'write'], [482, 59, 'write'], [65...666, 'ram': [[35666, 0], [35667, 243], [35668, 139], [65534, 117], [65535, 28], [7285, 168]], ...}, 'name': '00 f3 8b'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 35666, 0 35667, 243 35668, 139 65534, 117 65535, 28 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json-i1499] | 0.59 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] > daveNES = init_daveNES(test) tests/test_cpu.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test = {'cycles': [[22597, 0, 'read'], [22598, 226, 'read'], [283, 88, 'write'], [282, 71, 'write'], [281, 112, 'write'], [65...7, 'ram': [[22597, 0], [22598, 226], [22599, 133], [65534, 200], [65535, 149], [38344, 145]], ...}, 'name': '00 e2 85'} def init_daveNES(test: dict): """Initialises daveNES object and loads the test parameters into the appropriate registers and memory locations. Args: test (dict): json test Returns: daveNES: Initialised daveNES object. """ daveNES = cpu.MOS6502() daveNES.connect_to_bus() # Load test program for val in test['initial']['ram']: print(f'{val[0]}, {val[1]}') > daveNES.bus.wram.memory[val[0]] = np.uint8(val[1]) E IndexError: index 65535 is out of bounds for axis 0 with size 65535 tests/test_cpu.py:47: IndexError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/00.json 22597, 0 22598, 226 22599, 133 65534, 200 65535, 149 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5300] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1384147f0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 47428, 8 47429, 126 47430, 72 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5301] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1646bf3d0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 7689, 8 7690, 228 7691, 92 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5302] | 0.22 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1646bf3d0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 47264, 8 47265, 64 47266, 191 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5303] | 0.31 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164778160>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 36907, 8 36908, 77 36909, 216 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5304] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613bd00>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 6793, 8 6794, 50 6795, 177 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5305] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1646bf3d0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 64088, 8 64089, 106 64090, 112 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5346] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1209b07f0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 39978, 8 39979, 188 39980, 106 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5306] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16421ff10>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 11880, 8 11881, 234 11882, 157 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5307] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 55162, 8 55163, 214 55164, 93 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5347] | 0.24 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1369bf3d0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 61697, 8 61698, 176 61699, 9 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5400] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101000' == '10001000' E - 10001000 E ? ^ E + 10101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 50529, 40 50530, 135 50531, 90 314, 173 315, 136 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5308] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13832fdc0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 5942, 8 5943, 237 5944, 4 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5348] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x136a783a0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 16520, 8 16521, 126 16522, 82 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5309] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16421fdf0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 46522, 8 46523, 231 46524, 137 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5349] | 0.33 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1208cbdc0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 55807, 8 55808, 120 55809, 129 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5401] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100000' == '01110000' E - 01110000 E ? - E + 01100000 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 27048, 40 27049, 140 27050, 158 352, 215 353, 112 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5310] | 0.23 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613bd00>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 9742, 8 9743, 43 9744, 202 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5311] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613bd00>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 40197, 8 40198, 61 40199, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5403] | 0.28 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101110' == '01001110' E - 01001110 E ? ^ E + 01101110 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 61391, 40 61392, 191 61393, 179 282, 106 283, 78 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5312] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16421ff70>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 28358, 8 28359, 41 28360, 125 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5404] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101100' == '00001100' E - 00001100 E ? ^ E + 00101100 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 36232, 40 36233, 86 36234, 74 371, 238 372, 12 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5313] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 9944, 8 9945, 116 9946, 30 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5405] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100010' == '01110010' E - 01110010 E ? - E + 01100010 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 62532, 40 62533, 237 62534, 18 416, 226 417, 114 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5314] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16421ffd0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 45146, 8 45147, 106 45148, 210 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5406] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '11011101' E - 11011101 E ? - E + 11101101 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 34916, 40 34917, 237 34918, 181 484, 2 485, 221 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5315] | 0.26 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270130>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 31088, 8 31089, 245 31090, 113 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5407] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101110' == '01001110' E - 01001110 E ? ^ E + 01101110 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 28415, 40 28416, 205 28417, 217 280, 74 281, 78 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5316] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1646bf3d0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 7559, 8 7560, 233 7561, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5317] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270130>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 29305, 8 29306, 124 29307, 246 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5408] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101100' == '11111100' E - 11111100 E + 11101100 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 53497, 40 53498, 115 53499, 19 312, 99 313, 252 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5318] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16421feb0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 12529, 8 12530, 103 12531, 138 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5319] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613baf0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 35617, 8 35618, 232 35619, 42 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5410] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100000' == '11010000' E - 11010000 E ? - E + 11100000 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 5754, 40 5755, 251 5756, 12 267, 215 268, 208 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5320] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1646bf430>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 5187, 8 5188, 62 5189, 80 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5411] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '01011001' E - 01011001 E ? -- E + 01101001 E ? ++ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 31650, 40 31651, 188 31652, 118 390, 96 391, 89 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5321] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642701f0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 25939, 8 25940, 104 25941, 74 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5412] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '11111101' E - 11111101 E + 11101101 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 51584, 40 51585, 193 51586, 215 414, 251 415, 253 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5452] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 7 == 3 E + where 3 = <cpu.cpu.MOS6502 object at 0x116a147f0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 63008, 42 63009, 53 63010, 106 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5322] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16421ff10>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 46395, 8 46396, 213 46397, 36 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5453] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 199 == 227 E + where 227 = <cpu.cpu.MOS6502 object at 0x1244bf430>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 39808, 42 39809, 69 39810, 26 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5323] | 0.27 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642703d0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 25105, 8 25106, 177 25107, 30 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5454] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 0 == 128 E + where 128 = <cpu.cpu.MOS6502 object at 0x11692bdc0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 52827, 42 52828, 4 52829, 57 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5414] | 0.28 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100100' == '00010100' E - 00010100 E ? - E + 00100100 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 17556, 40 17557, 139 17558, 217 368, 167 369, 20 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5324] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 186, 8 187, 77 188, 203 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5455] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 130 == 65 E + where 65 = <cpu.cpu.MOS6502 object at 0x1244bf3d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 5383, 42 5384, 19 5385, 195 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5415] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100110' == '00010110' E - 00010110 E ? - E + 00100110 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 11262, 40 11263, 35 11264, 129 398, 158 399, 22 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5325] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 38211, 8 38212, 44 38213, 6 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5456] | 0.18 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 20 == 10 E + where 10 = <cpu.cpu.MOS6502 object at 0x11692bdc0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 16457, 42 16458, 143 16459, 218 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5457] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 215 == 107 E + where 107 = <cpu.cpu.MOS6502 object at 0x1244bf430>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 48872, 42 48873, 96 48874, 34 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5326] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 18408, 8 18409, 103 18410, 35 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5416] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100111' == '00000111' E - 00000111 E ? ^ E + 00100111 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 17645, 40 17646, 57 17647, 16 351, 104 352, 7 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5458] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 182 == 219 E + where 219 = <cpu.cpu.MOS6502 object at 0x11692bdc0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 25848, 42 25849, 42 25850, 149 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5327] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 33935, 8 33936, 199 33937, 39 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5417] | 0.25 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101111' == '11111111' E - 11111111 E + 11101111 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 38822, 40 38823, 182 38824, 186 489, 102 490, 255 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5503] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '00101011' E - 00101011 E ? ^^ E + 00101000 E ? ^^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 10240, 38 10241, 190 10242, 188 190, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5459] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 50 == 153 E + where 153 = <cpu.cpu.MOS6502 object at 0x117cddf30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 56112, 42 56113, 118 56114, 253 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5418] | 0.50 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '01000101' E - 01000101 E ? ^ E + 01100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 24844, 40 24845, 83 24846, 48 506, 201 507, 69 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5328] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 47069, 8 47070, 195 47071, 65 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5460] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 132 == 66 E + where 66 = <cpu.cpu.MOS6502 object at 0x1244bf3d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 61381, 42 61382, 3 61383, 125 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5504] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101001' == '10101001' E - 10101001 E ? ^ E + 00101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 5102, 38 5103, 183 5104, 49 183, 185 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5329] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613baf0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 34745, 8 34746, 111 34747, 113 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5461] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 221 == 238 E + where 238 = <cpu.cpu.MOS6502 object at 0x117cddf30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 10290, 42 10291, 47 10292, 135 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5419] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100010' == '01110010' E - 01110010 E ? - E + 01100010 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 41613, 40 41614, 36 41615, 114 326, 26 327, 114 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5462] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 246 == 123 E + where 123 = <cpu.cpu.MOS6502 object at 0x1244bf430>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 31474, 42 31475, 150 31476, 140 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5330] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270730>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 52257, 8 52258, 17 52259, 114 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5505] | 0.26 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '00100000' E - 00100000 E ? ^ ^ E + 10100001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 51876, 38 51877, 156 51878, 25 156, 204 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5463] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 153 == 204 E + where 204 = <cpu.cpu.MOS6502 object at 0x117cddf30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 8943, 42 8944, 139 8945, 38 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5420] | 0.25 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '01011001' E - 01011001 E ? -- E + 01101001 E ? ++ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 3049, 40 3050, 162 3051, 195 404, 99 405, 89 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5506] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101100' == '11101110' E - 11101110 E ? - E + 11101100 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 44972, 38 44973, 139 44974, 165 139, 117 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5331] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613baf0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 48576, 8 48577, 137 48578, 4 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5601] | 0.56 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100101' == '00100111' E - 00100111 E ? - E + 00100101 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 28180, 46 28181, 244 28182, 193 49652, 132 28183, 4 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5421] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101100' == '01011100' E - 01011100 E ? - E + 01101100 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 20348, 40 20349, 220 20350, 58 497, 177 498, 92 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5464] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 196 == 226 E + where 226 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 5283, 42 5284, 0 5285, 142 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5507] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101001' == '01101010' E - 01101010 E ? ^ - E + 11101001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 9174, 38 9175, 102 9176, 51 102, 233 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5554] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '00101010' E - 00101010 E ? - E + 00101000 E ? + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 42903, 54 42904, 71 42905, 184 71, 162 148, 36 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5465] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 236 == 118 E + where 118 = <cpu.cpu.MOS6502 object at 0x117cddf30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 26056, 42 26057, 169 26058, 73 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5332] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x138414790>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 11588, 8 11589, 20 11590, 162 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5508] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '11100011' E - 11100011 E ? ^ - E + 01100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 5909, 38 5910, 85 5911, 212 85, 176 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5422] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101010' == '01111010' E - 01111010 E ? -- E + 01101010 E ? ++ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 33440, 40 33441, 212 33442, 132 401, 87 402, 122 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5602] | 0.47 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100100' == '11100111' E - 11100111 E ? ^^ E + 11100100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 57502, 46 57503, 83 57504, 13 3411, 85 57505, 51 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5466] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 145 == 200 E + where 200 = <cpu.cpu.MOS6502 object at 0x12451f370>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 57619, 42 57620, 63 57621, 227 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5648] | 0.49 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101101' == '10101101' E - 10101101 E ? ^ E + 00101101 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 18347, 46 18348, 167 18349, 3 935, 173 18350, 15 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5333] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647783a0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 1075, 8 1076, 215 1077, 133 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5555] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101101' == '10101101' E - 10101101 E ? ^ E + 00101101 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 7107, 54 7108, 98 7109, 170 98, 47 147, 146 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5467] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 238 == 247 E + where 247 = <cpu.cpu.MOS6502 object at 0x12451f370>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 35423, 42 35424, 238 35425, 205 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5334] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647783a0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 7435, 8 7436, 10 7437, 74 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5603] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101001' == '10101011' E - 10101011 E ? - E + 10101001 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 35315, 46 35316, 59 35317, 132 33851, 194 35318, 37 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5509] | 0.25 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '11101110' E - 11101110 E ? - E + 11101101 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 56869, 38 56870, 237 56871, 29 237, 202 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5556] | 0.53 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '11100111' E - 11100111 E ? ^ - E + 01100101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 20149, 54 20150, 101 20151, 115 101, 152 235, 189 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5468] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 45 == 150 E + where 150 = <cpu.cpu.MOS6502 object at 0x117cddf30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 54573, 42 54574, 231 54575, 62 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5649] | 0.49 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '01101000' E - 01101000 E ? ^ E + 01101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 54374, 46 54375, 241 54376, 43 11249, 189 54377, 164 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5510] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100000' == '00100001' E - 00100001 E ? ^ E + 00100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 15889, 38 15890, 65 15891, 91 65, 38 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5335] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647783a0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 21449, 8 21450, 236 21451, 122 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5469] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 162 == 81 E + where 81 = <cpu.cpu.MOS6502 object at 0x1244bf430>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 13531, 42 13532, 235 13533, 177 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5604] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '11101011' E - 11101011 E + 01101000 tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 59878, 46 59879, 98 59880, 108 27746, 4 59881, 126 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5511] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '11100111' E - 11100111 E ? ^ - E + 01100101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 65208, 38 65209, 122 65210, 238 122, 190 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5557] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100100' == '00100110' E - 00100110 E ? - E + 00100100 E ? + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 65071, 54 65072, 30 65073, 209 30, 126 80, 43 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5336] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16477bd60>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 52743, 8 52744, 123 52745, 190 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5470] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 204 == 102 E + where 102 = <cpu.cpu.MOS6502 object at 0x12451f370>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 34038, 42 34039, 239 34040, 167 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5425] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100000' == '01110000' E - 01110000 E ? - E + 01100000 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 17632, 40 17633, 53 17634, 227 269, 165 270, 112 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5605] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '11101001' E - 11101001 E ? ^ E + 01101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 47042, 46 47043, 224 47044, 191 49120, 130 47045, 242 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5471] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 37 == 18 E + where 18 = <cpu.cpu.MOS6502 object at 0x117cddf30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 20064, 42 20065, 213 20066, 12 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5337] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613baf0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 59068, 8 59069, 199 59070, 71 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5512] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100001' == '01100000' E - 01100000 E ? ^ ^ E + 11100001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 57393, 38 57394, 117 57395, 19 117, 194 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5558] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101100' == '11101111' E - 11101111 E ? ^^ E + 11101100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 20331, 54 20332, 176 20333, 131 176, 133 242, 127 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5651] | 0.57 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '01100110' E - 01100110 E ? - E + 01100101 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 35932, 62 35933, 149 35934, 227 58324, 140 35935, 76 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5426] | 0.29 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101111' == '11111111' E - 11111111 E + 11101111 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 45891, 40 45892, 43 45893, 109 265, 65 266, 255 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5606] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100101' == '11100100' E - 11100100 E ? ^ E + 11100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 43582, 46 43583, 151 43584, 209 53655, 247 43585, 40 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5472] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 66 == 161 E + where 161 = <cpu.cpu.MOS6502 object at 0x1244bf430>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 55859, 42 55860, 204 55861, 188 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5513] | 0.56 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100000' == '10100001' E - 10100001 E ? ^ E + 10100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 32049, 38 32050, 94 32051, 205 94, 112 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5338] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613baf0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 60148, 8 60149, 159 60150, 166 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5427] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101010' == '00011010' E - 00011010 E ? -- E + 00101010 E ? ++ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 28924, 40 28925, 205 28926, 9 498, 248 499, 26 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5559] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101001' E - 10101001 E ? ^ ^ E + 00101000 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 29259, 54 29260, 213 29261, 72 213, 14 148, 2 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5473] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 196 == 226 E + where 226 = <cpu.cpu.MOS6502 object at 0x12451f370>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 15777, 42 15778, 248 15779, 14 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5607] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100001' == '10100000' E - 10100000 E ? ^ ^ E + 00100001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 30383, 46 30384, 69 30385, 103 26437, 186 30386, 129 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5652] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '10100000' E - 10100000 E ? ^ E + 10100001 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 22061, 62 22062, 248 22063, 224 57562, 202 57818, 197 22064, 57 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5339] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613baf0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 53581, 8 53582, 114 53583, 207 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5474] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 231 == 115 E + where 115 = <cpu.cpu.MOS6502 object at 0x117cddf30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 21066, 42 21067, 122 21068, 12 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5514] | 0.25 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101100' == '11101111' E - 11101111 E + 01101100 tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 6731, 38 6732, 216 6733, 216 216, 8 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5560] | 0.55 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101101' == '10101100' E - 10101100 E ? ^ ^ E + 00101101 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 23912, 54 23913, 11 23914, 59 11, 77 51, 178 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5428] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100101' == '00010101' E - 00010101 E ? -- E + 00100101 E ? ++ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 54380, 40 54381, 3 54382, 219 302, 141 303, 21 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5694] | 0.56 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '11101001' E - 11101001 E ? ^ E + 01101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 53056, 62 53057, 107 53058, 52 13357, 42 13613, 146 53059, 33 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5475] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 53 == 154 E + where 154 = <cpu.cpu.MOS6502 object at 0x124073a30>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 24598, 42 24599, 28 24600, 189 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5608] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101100' == '10101101' E - 10101101 E ? ^ ^ E + 00101100 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 34402, 46 34403, 206 34404, 69 17870, 3 34405, 163 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5653] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '11101111' E - 11101111 E ? - E + 11101101 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 59157, 62 59158, 218 59159, 242 62128, 159 62384, 220 59160, 62 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5340] | 0.32 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647783a0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 37281, 8 37282, 153 37283, 19 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5515] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101001' E - 10101001 E ? ^ ^ E + 00101000 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 53783, 38 53784, 90 53785, 103 90, 19 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5476] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 103 == 51 E + where 51 = <cpu.cpu.MOS6502 object at 0x1078abdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 9734, 42 9735, 129 9736, 45 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5561] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101101' == '11101100' E - 11101100 E ? ^ ^ E + 01101101 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 63406, 54 63407, 51 63408, 221 51, 231 198, 177 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5516] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101101' == '00101110' E - 00101110 E ? - E + 00101101 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 23843, 38 23844, 20 23845, 225 20, 155 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5341] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16477bd60>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 7621, 8 7622, 98 7623, 142 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5654] | 0.61 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100101' == '11100100' E - 11100100 E ? ^ E + 11100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 63012, 62 63013, 69 63014, 155 39717, 106 39973, 212 63015, 16 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5695] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100000' == '01100001' E - 01100001 E ? ^ E + 01100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 64083, 62 64084, 251 64085, 11 2878, 6 3134, 3 64086, 67 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5477] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 76 == 38 E + where 38 = <cpu.cpu.MOS6502 object at 0x12451f370>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 64755, 42 64756, 236 64757, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5739] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x124a7c7c0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 31346, 106 31347, 66 31348, 206 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5517] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101100' == '01101101' E - 01101101 E ? ^ ^ E + 11101100 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 2246, 38 2247, 24 2248, 145 24, 73 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5342] | 0.26 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16477bd60>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 15889, 8 15890, 29 15891, 137 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5562] | 0.46 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '01100010' E - 01100010 E ? - E + 01100001 E ? + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 40780, 54 40781, 55 40782, 32 55, 46 31, 129 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5478] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 22 == 11 E + where 11 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 19697, 42 19698, 204 19699, 105 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5610] | 0.53 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100000' == '00100001' E - 00100001 E ? ^ E + 00100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 186, 46 187, 189 188, 96 24765, 37 189, 86 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5783] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x112bb4790>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 37295, 102 37296, 106 37297, 214 106, 31 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5740] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1276bb400>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 44231, 106 44232, 15 44233, 106 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5696] | 0.60 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100001' == '11100011' E - 11100011 E ? - E + 11100001 E ? + tests/test_cpu.py:80: AssertionError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 51941, 62 51942, 149 51943, 230 59131, 225 51944, 45 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5343] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270610>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 5209, 8 5210, 155 5211, 100 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5655] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101100' == '11101101' E - 11101101 E ? ^ E + 11101100 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 38781, 62 38782, 208 38783, 191 49151, 101 38784, 202 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5518] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '01100010' E - 01100010 E ? - E + 01100001 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 4003, 38 4004, 116 4005, 112 116, 168 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5479] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 59 == 157 E + where 157 = <cpu.cpu.MOS6502 object at 0x1078abdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 56029, 42 56030, 237 56031, 35 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5563] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '00100000' E - 00100000 E ? ^ ^ E + 10100001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 31382, 54 31383, 255 31384, 142 255, 203 243, 200 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5784] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122fbf400>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 49038, 102 49039, 128 49040, 57 128, 232 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5611] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101101' == '01101111' E - 01101111 E ? - E + 01101101 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 11829, 46 11830, 96 11831, 25 6496, 162 11832, 218 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5741] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x126e821a0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 15867, 106 15868, 255 15869, 176 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5344] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164722260>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 41669, 8 41670, 196 41671, 230 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5480] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 83 == 169 E + where 169 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 19862, 42 19863, 128 19864, 96 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5656] | 0.56 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '00100011' E - 00100011 E ? ^ - E + 10100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 59401, 62 59402, 90 59403, 134 34370, 204 34626, 232 59404, 91 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5697] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '11100111' E - 11100111 E ? ^ - E + 01100101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 65048, 62 65049, 151 65050, 235 60318, 180 65051, 126 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5742] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12771f760>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 44937, 106 44938, 183 44939, 200 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5519] | 0.26 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '11100010' E - 11100010 E ? ^ - E + 01100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 18026, 38 18027, 36 18028, 240 36, 151 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5826] | 0.54 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107e1c7c0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 63970, 118 63971, 239 63972, 151 239, 211 10, 155 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5785] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230783a0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 19510, 102 19511, 215 19512, 143 215, 137 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5481] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 254 == 127 E + where 127 = <cpu.cpu.MOS6502 object at 0x1078aba90>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 64037, 42 64038, 139 64039, 166 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json-i5345] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647214e0>, mode = None def PHP(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:443: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/08.json 58611, 8 58612, 51 58613, 45 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5612] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101000' == '11101011' E - 11101011 E ? ^^ E + 11101000 E ? ^^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 3457, 46 3458, 72 3459, 164 42056, 78 3460, 59 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5433] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101001' == '10011001' E - 10011001 E + 10101001 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 2663, 40 2664, 119 2665, 248 328, 57 329, 153 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5520] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '10100011' E - 10100011 E ? - E + 10100001 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 31132, 38 31133, 57 31134, 159 57, 204 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5743] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x124a7c790>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 16526, 106 16527, 220 16528, 230 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5482] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '01101101' E - 01101101 E ? ^ E + 11101101 E ? ^ tests/test_cpu.py:80: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 11530, 42 11531, 193 11532, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5698] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101000' == '00101011' E - 00101011 E + 10101000 tests/test_cpu.py:80: AssertionError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 18844, 62 18845, 51 18846, 1 271, 47 527, 87 18847, 163 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5657] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101000' == '10101001' E - 10101001 E ? ^ E + 10101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 64376, 62 64377, 171 64378, 103 26589, 115 64379, 208 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5786] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x112bb4790>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 32798, 102 32799, 144 32800, 19 144, 215 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5868] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11a114790>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 37766, 110 37767, 170 37768, 170 43690, 57 37769, 61 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5565] | 0.54 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101000' == '01101000' E - 01101000 E ? ^ E + 11101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 61314, 54 61315, 186 61316, 181 186, 15 61, 91 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5613] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100100' == '01100100' E - 01100100 E ? ^ E + 11100100 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 45771, 46 45772, 229 45773, 14 3813, 109 45774, 138 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5909] | 0.49 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16477bd60>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 59593, 126 59594, 238 59595, 209 53558, 129 53814, 163 59596, 208 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5744] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12732e440>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 62157, 106 62158, 241 62159, 64 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5949] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1225447c0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 29069, 126 29070, 102 29071, 233 59673, 187 59929, 185 29072, 208 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5827] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1222bf400>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 63743, 118 63744, 6 63745, 216 6, 224 240, 193 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5483] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 137 == 68 E + where 68 = <cpu.cpu.MOS6502 object at 0x1078abdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 43083, 42 43084, 104 43085, 237 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5435] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101011' == '10111011' E - 10111011 E + 10101011 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 62373, 40 62374, 222 62375, 155 396, 3 397, 187 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5699] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '01100010' E - 01100010 E ? - E + 01100001 E ? + tests/test_cpu.py:80: AssertionError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 26045, 62 26046, 244 26047, 74 19026, 201 19282, 188 26048, 135 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5658] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100100' == '11100100' E - 11100100 E ? ^ E + 01100100 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 61748, 62 61749, 123 61750, 95 24405, 32 24661, 19 61751, 141 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5484] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 173 == 214 E + where 214 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 33400, 42 33401, 255 33402, 231 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5745] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 29822, 106 29823, 207 29824, 22 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5787] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122fbf460>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 53161, 102 53162, 187 53163, 246 187, 194 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5522] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100101' == '00100110' E - 00100110 E ? ^ - E + 10100101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 53082, 38 53083, 157 53084, 113 157, 248 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5614] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100000' == '00100001' E - 00100001 E ? ^ E + 00100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 6161, 46 6162, 6 6163, 203 51974, 41 6164, 61 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5566] | 0.48 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101100' == '10101100' E - 10101100 E ? ^ E + 00101100 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 32229, 54 32230, 102 32231, 202 102, 239 112, 9 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5869] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12ffbf400>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 26483, 110 26484, 182 26485, 235 60342, 199 26486, 44 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5910] | 0.59 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16421feb0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 48164, 126 48165, 112 48166, 198 50744, 234 51000, 61 48167, 254 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5828] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117dc01c0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 37482, 118 37483, 25 37484, 229 25, 235 178, 68 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5950] | 0.57 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127bbf400>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 11172, 64 11173, 107 11174, 168 398, 167 399, 175 400, 63 401, 154 39487, 38 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5485] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 196 == 98 E + where 98 = <cpu.cpu.MOS6502 object at 0x1078aba90>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 30213, 42 30214, 248 30215, 84 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5988] | 0.47 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f544790>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 14805, 64 14806, 13 14807, 221 410, 161 411, 74 412, 197 413, 136 35013, 102 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5746] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x126ff7be0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 58516, 106 58517, 224 58518, 76 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5700] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f6bf400>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 24904, 106 24905, 64 24906, 12 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5659] | 0.60 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100101' == '00100111' E - 00100111 E ? ^ - E + 10100101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 18679, 62 18680, 8 18681, 242 62035, 232 18682, 72 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5788] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x123078160>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 58380, 102 58381, 49 58382, 11 49, 84 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5436] | 0.28 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100111' == '01110111' E - 01110111 E + 01100111 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 31489, 40 31490, 22 31491, 39 330, 42 331, 119 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5870] | 0.49 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a0783a0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 60424, 110 60425, 105 60426, 75 19305, 71 60427, 85 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5486] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 69 == 162 E + where 162 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 55907, 42 55908, 88 55909, 120 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5829] | 0.57 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8c460>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 57787, 118 57788, 196 57789, 230 196, 38 255, 6 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5747] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 49495, 106 49496, 172 49497, 87 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5701] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f722560>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 58187, 106 58188, 4 58189, 215 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5911] | 0.45 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e2f0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 35500, 126 35501, 147 35502, 150 38417, 98 38673, 222 35503, 107 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5524] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101101' == '11101111' E - 11101111 E ? ^ - E + 01101101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 48106, 38 48107, 121 48108, 177 121, 184 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5951] | 0.56 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c783a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 18643, 64 18644, 122 18645, 49 316, 24 317, 167 318, 124 319, 55 14204, 74 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5789] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c33520>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 51905, 102 51906, 225 51907, 238 225, 234 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5487] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 4 == 2 E + where 2 = <cpu.cpu.MOS6502 object at 0x1078abdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 6795, 42 6796, 164 6797, 250 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5989] | 0.59 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12f1bf400>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 31295, 64 31296, 33 31297, 244 483, 143 484, 214 485, 90 486, 83 21338, 49 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5748] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12771f760>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 30481, 106 30482, 67 30483, 117 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5871] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fc8d420>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 7184, 110 7185, 85 7186, 22 5717, 18 7187, 203 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5568] | 0.47 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101100' == '10101100' E - 10101100 E ? ^ E + 00101100 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 6794, 54 6795, 146 6796, 95 146, 55 178, 47 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5616] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100101' == '00100101' E - 00100101 E ? ^ E + 10100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 7232, 46 7233, 187 7234, 27 7099, 228 7235, 144 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5702] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f7743a0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 11552, 106 11553, 106 11554, 54 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5488] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 52 == 26 E + where 26 = <cpu.cpu.MOS6502 object at 0x124073af0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 19291, 42 19292, 130 19293, 208 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5830] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122322d10>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 65202, 118 65203, 66 65204, 169 66, 76 121, 6 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5525] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '01100110' E - 01100110 E ? - E + 01100101 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 12228, 38 12229, 166 12230, 90 166, 173 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5749] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774250>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 57793, 106 57794, 41 57795, 162 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5438] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101111' == '11111111' E - 11111111 E + 11101111 tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 210, 40 211, 80 212, 85 350, 66 351, 255 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5912] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e350>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 321, 126 322, 223 323, 102 26135, 1 26391, 153 324, 89 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5790] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c33520>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 63348, 102 63349, 181 63350, 8 181, 16 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5703] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f3314e0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 35635, 106 35636, 211 35637, 22 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5489] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 51 == 25 E + where 25 = <cpu.cpu.MOS6502 object at 0x12451f370>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 44426, 42 44427, 177 44428, 194 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5952] | 0.61 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1225447c0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 13876, 64 13877, 203 13878, 159 257, 69 258, 225 259, 180 260, 24 6324, 240 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5569] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '01101010' E - 01101010 E ? - E + 01101000 E ? + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 32244, 54 32245, 98 32246, 137 98, 163 55, 62 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5661] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '11100011' E - 11100011 E ? ^ - E + 01100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 64062, 62 64063, 34 64064, 19 5112, 181 64065, 120 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5617] | 0.44 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101100' == '01101111' E - 01101111 E ? ^^ E + 01101100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 12292, 46 12293, 23 12294, 179 45847, 27 12295, 167 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5526] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100100' == '10100110' E - 10100110 E ? ^ - E + 00100100 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 49971, 38 49972, 130 49973, 71 130, 48 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5990] | 0.64 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12f2783a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 23579, 64 23580, 104 23581, 6 291, 111 292, 252 293, 152 294, 118 30360, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5750] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10584ceb0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 50462, 102 50463, 186 50464, 238 186, 162 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5872] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11a02bdf0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 29818, 110 29819, 201 29820, 175 45001, 114 29821, 27 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5831] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117dc0ac0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 28350, 118 28351, 63 28352, 25 63, 5 201, 42 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5439] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '01011001' E - 01011001 E ? -- E + 01101001 E ? ++ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 38787, 40 38788, 32 38789, 148 258, 223 259, 89 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5791] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x123078250>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 45170, 102 45171, 227 45172, 211 227, 176 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5913] | 0.56 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e3b0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 54968, 126 54969, 84 54970, 101 25892, 147 26148, 30 54971, 176 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5490] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 34 == 17 E + where 17 = <cpu.cpu.MOS6502 object at 0x1078abdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 53807, 42 53808, 175 53809, 51 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5704] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f774190>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 63824, 106 63825, 9 63826, 180 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5570] | 0.54 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100000' == '00100010' E - 00100010 E ? ^ - E + 10100000 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 13427, 54 13428, 53 13429, 50 53, 41 214, 68 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5662] | 0.54 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '10100000' E - 10100000 E ? ^ E + 10100001 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 50374, 62 50375, 48 50376, 78 20199, 193 50377, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5527] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101001' == '00101000' E - 00101000 E ? ^ ^ E + 10101001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 62229, 38 62230, 136 62231, 195 136, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5618] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100100' == '10100101' E - 10100101 E ? ^ E + 10100100 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 5616, 46 5617, 21 5618, 180 46101, 85 5619, 78 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5751] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12771f3a0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 54117, 102 54118, 190 54119, 131 190, 82 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5832] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122323df0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 965, 118 966, 130 967, 206 130, 30 252, 122 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5491] | 0.30 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 139 == 69 E + where 69 = <cpu.cpu.MOS6502 object at 0x12457be50>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 4081, 42 4082, 208 4083, 194 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5705] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33df0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 59413, 106 59414, 205 59415, 98 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5873] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613ba90>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 7976, 110 7977, 213 7978, 245 62933, 99 7979, 129 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5953] | 0.46 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a81c0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 12480, 64 12481, 109 12482, 19 332, 69 333, 237 334, 81 335, 161 41297, 47 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5792] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1229ab940>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 62327, 102 62328, 51 62329, 101 51, 48 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5991] | 0.66 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f544790>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 33756, 64 33757, 25 33758, 88 297, 221 298, 90 299, 152 300, 214 54936, 121 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5914] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e410>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 55482, 126 55483, 209 55484, 51 13231, 118 13487, 195 55485, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5619] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101001' == '01101001' E - 01101001 E ? ^ E + 11101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 18386, 46 18387, 222 18388, 116 29918, 206 18389, 87 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5492] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 153 == 204 E + where 204 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 23264, 42 23265, 124 23266, 98 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5571] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '11100010' E - 11100010 E ? ^ - E + 01100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 1004, 54 1005, 180 1006, 9 180, 226 95, 155 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5528] | 0.28 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101000' E - 10101000 E ? ^ E + 00101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 23438, 38 23439, 92 23440, 237 92, 25 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5663] | 0.47 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100000' == '01100010' E - 01100010 E ? - E + 01100000 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 32503, 62 32504, 238 32505, 140 36067, 162 36323, 58 32506, 43 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5752] | 0.47 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12732e680>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 42825, 102 42826, 160 42827, 48 160, 250 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5793] | 0.44 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122500520>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 33459, 102 33460, 160 33461, 237 160, 66 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5706] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f722fe0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 8887, 106 8888, 219 8889, 225 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5833] | 0.57 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107e1c790>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 14668, 118 14669, 127 14670, 85 127, 39 67, 85 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5874] | 0.60 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fc8d3c0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 3591, 110 3592, 5 3593, 231 59141, 107 3594, 37 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5954] | 0.61 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x100ef1000>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 21129, 64 21130, 21 21131, 49 256, 156 257, 198 258, 150 259, 182 46742, 244 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5493] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 157 == 206 E + where 206 = <cpu.cpu.MOS6502 object at 0x1078abdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 41988, 42 41989, 187 41990, 12 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5707] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f3312a0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 11346, 106 11347, 9 11348, 150 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5529] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '11100011' E - 11100011 E ? ^ - E + 01100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 54202, 38 54203, 28 54204, 43 28, 154 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5915] | 0.62 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164723e20>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 6943, 126 6944, 159 6945, 29 7517, 130 7773, 25 6946, 226 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5442] | 0.31 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100010' == '10000010' E - 10000010 E ? ^ E + 10100010 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 55901, 40 55902, 143 55903, 25 476, 50 477, 130 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5992] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12ecc1240>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 61970, 64 61971, 107 61972, 244 345, 240 346, 84 347, 153 348, 9 2457, 252 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5494] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 197 == 98 E + where 98 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 53779, 42 53780, 118 53781, 56 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5794] | 0.43 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c33520>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 17746, 102 17747, 104 17748, 136 104, 13 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5753] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x126ff7be0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 23666, 102 23667, 31 23668, 38 31, 252 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5834] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122323f40>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 17989, 118 17990, 73 17991, 51 73, 203 64, 234 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5708] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 5361, 106 5362, 141 5363, 247 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5875] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11a02bdf0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 18078, 110 18079, 91 18080, 130 33371, 188 18081, 147 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5495] | 0.29 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 72 == 36 E + where 36 = <cpu.cpu.MOS6502 object at 0x1078aba90>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 55240, 42 55241, 63 55242, 37 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5443] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100111' == '00000111' E - 00000111 E ? ^ E + 00100111 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 31926, 40 31927, 55 31928, 199 483, 108 484, 7 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5955] | 0.62 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12788f340>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 39056, 64 39057, 126 39058, 227 482, 151 483, 225 484, 88 485, 164 42072, 164 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5621] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101001' == '10101001' E - 10101001 E ? ^ E + 00101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 49495, 46 49496, 190 49497, 160 41150, 175 49498, 15 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5573] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100011' == '00100010' E - 00100010 E ? ^ E + 00100011 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 3878, 54 3879, 76 3880, 169 76, 173 156, 128 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5916] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164722260>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 3091, 126 3092, 39 3093, 75 19238, 134 19494, 216 3094, 54 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5993] | 0.62 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10783bd00>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 26218, 64 26219, 131 26220, 118 470, 78 471, 89 472, 250 473, 236 60666, 224 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5754] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7bb0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 18314, 102 18315, 46 18316, 128 46, 146 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5795] | 0.27 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230780a0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 46430, 102 46431, 113 46432, 6 113, 125 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5496] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 211 == 105 E + where 105 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 2336, 42 2337, 87 2338, 188 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5531] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '00101011' E - 00101011 E ? ^^ E + 00101000 E ? ^^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 14795, 38 14796, 152 14797, 128 152, 29 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5709] | 0.27 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723fd0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 26817, 106 26818, 92 26819, 227 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5835] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122378160>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 26398, 118 26399, 170 26400, 80 170, 107 210, 254 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5876] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x104978eb0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 59709, 110 59710, 65 59711, 15 3905, 1 59712, 171 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5497] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 129 == 64 E + where 64 = <cpu.cpu.MOS6502 object at 0x1078abdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 11359, 42 11360, 54 11361, 14 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5622] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101001' E - 10101001 E ? ^ ^ E + 00101000 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 18263, 46 18264, 159 18265, 220 56479, 57 18266, 61 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5444] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100111' == '10000111' E - 10000111 E ? ^ E + 10100111 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 5364, 40 5365, 12 5366, 72 393, 246 394, 135 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5710] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f331480>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 16078, 106 16079, 253 16080, 81 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5796] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230780a0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 21094, 102 21095, 135 21096, 121 135, 116 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5917] | 0.61 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e4d0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 7078, 126 7079, 77 7080, 147 37825, 61 7081, 232 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5956] | 0.63 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c23dc0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 1412, 64 1413, 125 1414, 72 504, 222 505, 223 506, 198 507, 9 2502, 69 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5755] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12732e800>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 7324, 102 7325, 104 7326, 193 104, 223 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5666] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '11101011' E - 11101011 E ? ^ - E + 01101001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 12220, 62 12221, 142 12222, 91 23414, 38 23670, 185 12223, 83 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5836] | 0.53 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122322ad0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 55607, 118 55608, 165 55609, 242 165, 204 208, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5498] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 143 == 199 E + where 199 = <cpu.cpu.MOS6502 object at 0x117e4d2d0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 56316, 42 56317, 65 56318, 192 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5994] | 0.59 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12f1bf460>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 42677, 64 42678, 31 42679, 28 490, 112 491, 120 492, 168 493, 8 2216, 235 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5877] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613ba90>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 38564, 110 38565, 169 38566, 157 40361, 161 38567, 168 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5445] | 0.30 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '01001000' E - 01001000 E ? ^ E + 01101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 11128, 40 11129, 241 11130, 187 387, 208 388, 72 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5623] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100000' == '00100001' E - 00100001 E ? ^ ^ E + 10100000 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 32029, 46 32030, 235 32031, 144 37099, 98 32032, 60 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5711] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f7743a0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 29504, 106 29505, 3 29506, 90 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5575] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101001' == '01101000' E - 01101000 E ? ^ ^ E + 11101001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 64491, 54 64492, 62 64493, 9 62, 98 166, 247 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5499] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 157 == 78 E + where 78 = <cpu.cpu.MOS6502 object at 0x124073970>.r_accumulator tests/test_cpu.py:75: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 17491, 42 17492, 23 17493, 4 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5797] | 0.44 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1229ab880>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 6489, 102 6490, 123 6491, 78 123, 52 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5533] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '11100101' E - 11100101 E ? ^ E + 01100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 53605, 38 53606, 77 53607, 91 77, 153 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5756] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774190>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 30389, 102 30390, 156 30391, 108 156, 208 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5712] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f7233a0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 34913, 106 34914, 93 34915, 179 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5918] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e2f0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 43251, 126 43252, 184 43253, 253 64854, 29 65110, 30 43254, 30 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5837] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8c760>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 29577, 118 29578, 69 29579, 14 69, 162 68, 107 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5957] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a82e0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 9593, 64 9594, 6 9595, 84 460, 143 461, 114 462, 89 463, 169 43353, 143 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5624] | 0.56 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101001' == '10101000' E - 10101000 E ? ^ E + 10101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 6128, 46 6129, 44 6130, 120 30764, 219 6131, 254 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5878] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11a02bdf0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 34211, 110 34212, 114 34213, 126 32370, 155 34214, 190 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5500] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101100' == '01101101' E - 01101101 E ? ^ ^ E + 11101100 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 22879, 38 22880, 53 22881, 214 53, 109 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5534] | 0.30 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101101' == '01101100' E - 01101100 E ? ^ E + 01101101 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 3070, 38 3071, 252 3072, 124 252, 165 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5576] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100100' == '01100111' E - 01100111 E + 11100100 tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 61123, 54 61124, 109 61125, 248 109, 144 253, 70 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5995] | 0.47 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x128550280>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 40997, 64 40998, 205 40999, 140 458, 113 459, 185 460, 232 461, 122 31464, 41 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5713] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 62445, 106 62446, 229 62447, 242 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5757] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 39126, 102 39127, 112 39128, 174 112, 124 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5798] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122500520>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 20465, 102 20466, 236 20467, 39 236, 187 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5919] | 0.59 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642708b0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 24872, 126 24873, 209 24874, 228 58611, 12 24875, 131 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5447] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100100' == '11010100' E - 11010100 E ? - E + 11100100 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 34257, 40 34258, 30 34259, 55 296, 249 297, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5838] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x101747df0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 63071, 118 63072, 104 63073, 55 104, 229 52, 92 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5535] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101101' == '11101111' E - 11101111 E ? ^ - E + 01101101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 39612, 38 39613, 171 39614, 51 171, 158 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5668] | 0.48 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100000' == '00100010' E - 00100010 E ? - E + 00100000 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 59752, 62 59753, 204 59754, 117 30182, 38 59755, 185 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5879] | 0.53 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fb1f940>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 34923, 110 34924, 171 34925, 83 21419, 176 34926, 230 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5958] | 0.58 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12788f3a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 29902, 64 29903, 86 29904, 33 300, 4 301, 34 302, 87 303, 79 20311, 177 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5501] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '01100100' E - 01100100 E ? ^ E + 01100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 6614, 38 6615, 123 6616, 45 123, 134 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5714] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11ee2a200>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 38389, 106 38390, 126 38391, 62 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5625] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100111' == '00100100' E - 00100100 E ? ^^ E + 00100111 E ? ^^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 43786, 46 43787, 223 43788, 31 8159, 128 43789, 187 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5577] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100100' == '01100111' E - 01100111 E ? ^^ E + 01100100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 25631, 54 25632, 152 25633, 0 152, 108 11, 63 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5799] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x112acfdf0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 24867, 102 24868, 133 24869, 249 133, 113 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5758] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12732e860>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 61854, 102 61855, 3 61856, 131 3, 179 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5996] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x128550460>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 29331, 64 29332, 216 29333, 81 497, 126 498, 200 499, 58 500, 32 8250, 162 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5448] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100110' == '00000110' E - 00000110 E ? ^ E + 00100110 E ? ^ tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 37191, 40 37192, 233 37193, 177 400, 146 401, 6 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5839] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1008d0eb0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 12067, 118 12068, 85 12069, 96 85, 123 28, 34 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5715] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f331600>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 46934, 106 46935, 219 46936, 91 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5669] | 0.48 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '11100101' E - 11100101 E ? ^ E + 01100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 64258, 62 64259, 217 64260, 139 35769, 182 36025, 164 64261, 239 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5502] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101001' == '00101000' E - 00101000 E ? ^ E + 00101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 39684, 38 39685, 212 39686, 176 212, 148 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5880] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a0211b0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 29208, 110 29209, 113 29210, 101 25969, 185 29211, 186 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5920] | 0.51 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647214e0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 36135, 126 36136, 35 36137, 73 18832, 55 36138, 165 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5578] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100001' == '10100001' E - 10100001 E ? ^ E + 00100001 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 24485, 54 24486, 88 24487, 116 88, 126 67, 165 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5626] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101101' == '10101100' E - 10101100 E ? ^ E + 10101101 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 33106, 46 33107, 204 33108, 44 11468, 211 33109, 66 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5800] | 0.51 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c334c0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 34839, 118 34840, 90 34841, 178 90, 183 241, 166 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5959] | 0.58 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127bbf460>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 43623, 64 43624, 128 43625, 0 389, 54 390, 120 391, 51 392, 99 25395, 154 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5759] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127777d90>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 21218, 102 21219, 40 21220, 18 40, 157 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5716] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723460>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 6715, 106 6716, 99 6717, 108 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5997] | 0.58 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f5447c0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 25588, 64 25589, 24 25590, 42 343, 5 344, 46 345, 106 346, 46 11882, 0 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5449] | 0.32 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100110' == '00010110' E - 00010110 E ? - E + 00100110 E ? + tests/test_cpu.py:80: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 28119, 40 28120, 11 28121, 47 278, 113 279, 22 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5840] | 0.51 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122378160>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 42243, 118 42244, 28 42245, 235 28, 145 149, 181 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5537] | 0.27 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '10100010' E - 10100010 E ? - E + 10100001 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 15736, 38 15737, 177 15738, 100 177, 235 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5670] | 0.64 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '10100010' E - 10100010 E ? - E + 10100001 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 61326, 62 61327, 142 61328, 249 63952, 221 61329, 246 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5579] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101100' == '10101110' E - 10101110 E ? - E + 10101100 E ? + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 43636, 54 43637, 131 43638, 132 131, 145 96, 100 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5881] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a078160>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 13892, 110 13893, 224 13894, 205 52704, 0 13895, 76 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5627] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '01100011' E - 01100011 E ? - E + 01100001 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 61174, 46 61175, 209 61176, 126 32465, 148 61177, 61 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5717] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723100>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 54604, 106 54605, 103 54606, 231 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5921] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270970>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 61906, 126 61907, 82 61908, 197 50530, 227 61909, 118 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5760] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774190>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 47403, 102 47404, 36 47405, 237 36, 80 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5538] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100101' == '10100110' E - 10100110 E ? ^ - E + 00100101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 20273, 38 20274, 162 20275, 166 162, 148 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5801] | 0.47 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x102bc7d00>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 59568, 118 59569, 94 59570, 204 94, 182 64, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5450] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 19 == 137 E + where 137 = <cpu.cpu.MOS6502 object at 0x11c78fdf0>.r_accumulator tests/test_cpu.py:75: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 33775, 42 33776, 62 33777, 109 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5960] | 0.62 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c780a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 51127, 64 51128, 183 51129, 73 439, 101 440, 206 441, 18 442, 217 55570, 238 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5841] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x101747df0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 16720, 118 16721, 81 16722, 209 81, 177 198, 112 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5580] | 0.57 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '11101001' E - 11101001 E ? ^ E + 01101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 41434, 54 41435, 156 41436, 141 156, 65 72, 137 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5998] | 0.63 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f544790>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 58257, 64 58258, 80 58259, 48 330, 210 331, 199 332, 209 333, 220 56529, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5718] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f774190>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 41852, 106 41853, 182 41854, 151 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5628] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '01101011' E - 01101011 E ? - E + 01101001 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 48128, 46 48129, 98 48130, 181 46434, 188 48131, 199 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json-i5451] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer > assert test['final']['a'] == daveNES.r_accumulator E assert 2 == 1 E + where 1 = <cpu.cpu.MOS6502 object at 0x105873a60>.r_accumulator tests/test_cpu.py:75: AssertionError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2a.json 42000, 42 42001, 77 42002, 58 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5882] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a078160>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 6120, 110 6121, 103 6122, 88 22631, 131 6123, 17 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5539] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100100' == '00100100' E - 00100100 E ? ^ E + 10100100 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 24709, 38 24710, 216 24711, 197 216, 96 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5922] | 0.65 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e530>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 46031, 126 46032, 61 46033, 64 16607, 54 46034, 168 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5761] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774190>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 43284, 102 43285, 250 43286, 153 250, 75 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5802] | 0.44 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf490>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 22471, 118 22472, 170 22473, 152 170, 156 226, 2 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5719] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f774190>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 40433, 106 40434, 181 40435, 72 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5842] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122322b90>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 53504, 118 53505, 132 53506, 163 132, 114 240, 113 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5629] | 0.56 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100100' == '00100110' E - 00100110 E + 10100100 tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 33792, 46 33793, 61 33794, 19 4925, 89 33795, 8 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5961] | 0.63 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127102140>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 14302, 64 14303, 161 14304, 154 402, 97 403, 156 404, 20 405, 133 34068, 18 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5540] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100000' == '10100011' E - 10100011 E ? ^^ E + 10100000 E ? ^^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 17415, 38 17416, 144 17417, 90 144, 64 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5762] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774190>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 61418, 102 61419, 31 61420, 235 31, 13 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5581] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101001' == '00101001' E - 00101001 E ? ^ E + 10101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 28325, 54 28326, 3 28327, 168 3, 217 51, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5883] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fb1f940>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 9131, 110 9132, 195 9133, 212 54467, 85 9134, 239 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5720] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33be0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 53681, 106 53682, 66 53683, 102 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5672] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '11101010' E - 11101010 E ? ^ - E + 01101000 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 6737, 62 6738, 252 6739, 0 16, 187 272, 46 6740, 16 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5999] | 0.64 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10783bdf0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 31864, 64 31865, 214 31866, 160 495, 140 496, 182 497, 209 498, 42 10961, 226 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5803] | 0.55 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bfb80>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 572, 118 573, 96 574, 79 96, 253 176, 186 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5923] | 0.45 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270970>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 2798, 126 2799, 219 2800, 95 24428, 118 24684, 189 2801, 236 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5541] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101101' == '00101110' E - 00101110 E ? - E + 00101101 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 6857, 38 6858, 132 6859, 151 132, 162 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5843] | 0.56 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8c6a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 52261, 118 52262, 222 52263, 196 222, 114 14, 213 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5721] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 32289, 106 32290, 55 32291, 199 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5582] | 0.47 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100000' == '11100000' E - 11100000 E ? ^ E + 01100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 25642, 54 25643, 120 25644, 93 120, 175 183, 43 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5763] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12732e5c0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 38607, 102 38608, 21 38609, 192 21, 123 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5630] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101101' == '11101100' E - 11101100 E ? ^ ^ E + 01101101 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 16519, 46 16520, 181 16521, 77 19893, 153 16522, 48 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5884] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a078160>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 52323, 110 52324, 222 52325, 165 42462, 70 52326, 22 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5673] | 0.61 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '11101010' E - 11101010 E ? ^ - E + 01101000 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 59491, 62 59492, 158 59493, 74 19108, 21 59494, 35 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5962] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12788f580>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 57353, 64 57354, 243 57355, 198 504, 153 505, 235 506, 176 507, 78 20144, 197 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5722] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 9602, 106 9603, 244 9604, 64 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5924] | 0.58 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e4d0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 35509, 126 35510, 221 35511, 197 50469, 205 50725, 183 35512, 179 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5804] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf430>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 52873, 118 52874, 252 52875, 142 252, 251 192, 88 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5631] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100101' == '00100110' E - 00100110 E ? - E + 00100101 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 17808, 46 17809, 68 17810, 146 37444, 175 17811, 119 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5583] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '01101010' E - 01101010 E ? - E + 01101000 E ? + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 31856, 54 31857, 30 31858, 192 30, 141 130, 19 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5764] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12771f3a0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 48634, 102 48635, 184 48636, 246 184, 32 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5844] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 29708, 118 29709, 180 29710, 225 180, 191 193, 22 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5885] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a0783a0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 14493, 110 14494, 41 14495, 142 36393, 234 14496, 78 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5723] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 24308, 106 24309, 197 24310, 18 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5543] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100001' == '01100011' E - 01100011 E ? ^ - E + 11100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 12397, 38 12398, 233 12399, 140 233, 216 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5963] | 0.59 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1225447c0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 10794, 64 10795, 217 10796, 39 452, 207 453, 186 454, 247 455, 22 5879, 26 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5674] | 0.52 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '11101001' E - 11101001 E ? ^ ^ E + 01101000 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 59240, 62 59241, 193 59242, 143 36732, 100 36988, 14 59243, 168 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5805] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230780a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 43195, 118 43196, 229 43197, 239 229, 202 219, 75 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5765] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x126ff7be0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 64222, 102 64223, 36 64224, 188 36, 120 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5724] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 43647, 106 43648, 43 43649, 4 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5925] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647228f0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 26656, 126 26657, 57 26658, 106 27213, 149 26659, 61 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5632] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100100' == '11100111' E - 11100111 E ? ^^ E + 11100100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 50671, 46 50672, 146 50673, 69 17810, 91 50674, 133 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5584] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100101' == '00100100' E - 00100100 E ? ^ ^ E + 10100101 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 61030, 54 61031, 249 61032, 179 249, 231 136, 198 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5845] | 0.46 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122378160>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 42201, 118 42202, 143 42203, 147 143, 57 7, 154 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5886] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a078160>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 24789, 110 24790, 62 24791, 129 33086, 51 24792, 118 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5544] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101001' == '01101010' E - 01101010 E ? ^ - E + 11101001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 54005, 38 54006, 135 54007, 48 135, 198 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5806] | 0.55 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c336a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 28884, 118 28885, 174 28886, 89 174, 149 209, 194 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5675] | 0.48 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101100' == '10101111' E - 10101111 E ? ^^ E + 10101100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 7970, 62 7971, 189 7972, 180 46171, 40 46427, 76 7973, 74 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5725] | 0.25 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f7233a0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 30213, 106 30214, 117 30215, 73 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5766] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10584ceb0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 21998, 102 21999, 175 22000, 192 175, 169 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5964] | 0.65 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c780a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 12330, 64 12331, 103 12332, 172 380, 61 381, 252 382, 148 383, 207 53140, 218 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5585] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '11101000' E - 11101000 E ? ^ ^ E + 01101001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 8799, 54 8800, 234 8801, 83 234, 133 26, 183 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5926] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e4d0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 17500, 126 17501, 32 17502, 142 36592, 36 17503, 26 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5545] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100100' == '01100111' E - 01100111 E ? ^^ E + 01100100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 19583, 38 19584, 106 19585, 168 106, 56 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5887] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023cd0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 18562, 110 18563, 15 18564, 15 3855, 71 18565, 189 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5846] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8ca00>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 21031, 118 21032, 82 21033, 156 82, 92 22, 228 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5726] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723460>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 58772, 106 58773, 244 58774, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5586] | 0.56 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101001' == '10101000' E - 10101000 E ? ^ ^ E + 00101001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 21304, 54 21305, 61 21306, 75 61, 44 188, 190 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5676] | 0.57 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100100' == '01100110' E - 01100110 E ? ^ - E + 11100100 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 24528, 62 24529, 90 24530, 31 8048, 93 24531, 119 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5767] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7af0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 782, 102 783, 73 784, 189 73, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5634] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101000' E - 10101000 E ? ^ E + 00101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 7972, 46 7973, 19 7974, 157 40211, 44 7975, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5807] | 0.50 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bd9f0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 19981, 118 19982, 37 19983, 179 37, 7 43, 220 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5546] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101101' == '00101111' E - 00101111 E ? - E + 00101101 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 10459, 38 10460, 88 10461, 185 88, 177 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5727] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723460>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 29003, 106 29004, 95 29005, 79 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5927] | 0.59 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642701f0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 42943, 126 42944, 231 42945, 195 49991, 236 50247, 1 42946, 91 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5847] | 0.56 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122322d10>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 61360, 118 61361, 43 61362, 43 43, 227 226, 50 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5888] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613ba90>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 8308, 110 8309, 216 8310, 98 25304, 59 8311, 38 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5965] | 0.66 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c23dc0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 24256, 64 24257, 173 24258, 121 340, 119 341, 255 342, 88 343, 219 56152, 113 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5768] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127777d90>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 7327, 102 7328, 186 7329, 119 186, 77 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5728] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723460>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 20528, 106 20529, 127 20530, 65 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5587] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101100' == '00101110' E - 00101110 E ? ^ - E + 10101100 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 4859, 54 4860, 244 4861, 227 244, 109 163, 113 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5635] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100100' == '00100100' E - 00100100 E ? ^ E + 10100100 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 15632, 46 15633, 126 15634, 140 35966, 67 15635, 54 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5677] | 0.48 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101011' E - 10101011 E + 00101000 tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 40371, 62 40372, 221 40373, 33 8601, 212 8857, 29 40374, 47 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5547] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '01101011' E - 01101011 E ? - E + 01101001 E ? + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 44817, 38 44818, 127 44819, 71 127, 129 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5808] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bd7e0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 58141, 118 58142, 251 58143, 181 251, 33 44, 228 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5848] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117dc03a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 33338, 118 33339, 220 33340, 101 220, 67 52, 22 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5928] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270970>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 18402, 126 18403, 91 18404, 254 65106, 38 65362, 144 18405, 223 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5729] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723460>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 12649, 106 12650, 85 12651, 115 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5548] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '00100000' E - 00100000 E ? ^ ^ E + 10100001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 48359, 38 48360, 13 48361, 220 13, 229 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5769] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127777d90>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 8064, 102 8065, 183 8066, 166 183, 1 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5889] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10613bdf0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 29888, 110 29889, 100 29890, 46 11876, 211 29891, 115 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5966] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9480>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 58835, 64 58836, 171 58837, 162 304, 84 305, 231 306, 123 307, 112 28795, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5588] | 0.49 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101000' == '00101000' E - 00101000 E ? ^ E + 10101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 36849, 54 36850, 154 36851, 92 154, 131 10, 97 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5636] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101001' == '10101011' E - 10101011 E ? - E + 10101001 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 18746, 46 18747, 76 18748, 190 48716, 244 18749, 239 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5809] | 0.48 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c336a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 10041, 118 10042, 207 10043, 126 207, 175 86, 145 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5678] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101001' == '11101010' E - 11101010 E ? - E + 11101001 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 6621, 62 6622, 36 6623, 168 43103, 232 6624, 51 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5730] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f7233a0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 56082, 106 56083, 128 56084, 176 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5849] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 12761, 118 12762, 237 12763, 125 237, 5 131, 247 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5549] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101100' == '10101111' E - 10101111 E ? ^^ E + 10101100 E ? ^^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 42907, 38 42908, 193 42909, 42 193, 95 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5929] | 0.54 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e470>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 20728, 126 20729, 143 20730, 1 498, 232 20731, 62 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5770] | 0.29 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774190>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 13519, 102 13520, 186 13521, 207 186, 80 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5890] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a078160>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 38881, 110 38882, 95 38883, 159 40799, 209 38884, 90 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5731] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f774190>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 21963, 106 21964, 28 21965, 228 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5967] | 0.67 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x101d67d00>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 33632, 64 33633, 62 33634, 240 259, 245 260, 150 261, 201 262, 216 55497, 0 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5679] | 0.54 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101101' == '01101111' E - 01101111 E ? - E + 01101101 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 867, 62 868, 18 869, 251 64422, 162 870, 108 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5589] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '11100001' E - 11100001 E ? ^ E + 01100001 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 8960, 54 8961, 59 8962, 185 59, 12 128, 177 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5810] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf0d0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 1733, 118 1734, 74 1735, 182 74, 142 142, 189 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5550] | 0.56 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100001' == '00100011' E - 00100011 E ? ^ - E + 10100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 22542, 54 22543, 25 22544, 106 25, 56 106, 208 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5850] | 0.51 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8c7c0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 64489, 110 64490, 144 64491, 183 46992, 201 64492, 33 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5771] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774190>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 11038, 102 11039, 116 11040, 136 116, 220 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5732] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f774190>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 843, 106 844, 136 845, 85 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5891] | 0.50 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a0783a0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 28966, 110 28967, 188 28968, 125 32188, 28 28969, 133 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5930] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642708b0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 31309, 126 31310, 228 31311, 159 40949, 226 31312, 114 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5638] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100000' == '00100001' E - 00100001 E ? ^ ^ E + 10100000 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 3794, 46 3795, 70 3796, 233 59718, 107 3797, 191 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5590] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100101' == '00100110' E - 00100110 E ? ^ - E + 10100101 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 13157, 54 13158, 212 13159, 218 212, 153 119, 202 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5811] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230783a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 22616, 118 22617, 134 22618, 43 134, 240 106, 74 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5680] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '11101001' E - 11101001 E ? ^ E + 01101001 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 18036, 62 18037, 4 18038, 160 41035, 186 18039, 50 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5733] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f774190>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 21302, 106 21303, 45 21304, 137 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5772] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 49532, 102 49533, 68 49534, 40 68, 47 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5551] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '01101101' E - 01101101 E ? ^ E + 11101101 E ? ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 6758, 54 6759, 133 6760, 55 133, 168 120, 222 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5968] | 0.59 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c780a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 15127, 64 15128, 83 15129, 93 304, 69 305, 53 306, 227 307, 126 32483, 233 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5851] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1008d1000>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 2087, 110 2088, 250 2089, 230 59130, 19 2090, 120 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5931] | 0.54 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270670>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 55645, 126 55646, 218 55647, 200 51355, 194 51611, 252 55648, 212 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5734] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f776cb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 58133, 106 58134, 191 58135, 237 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5639] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100000' == '11100011' E - 11100011 E ? ^^ E + 11100000 E ? ^^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 20124, 46 20125, 97 20126, 42 10849, 79 20127, 101 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5892] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x104978eb0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 13073, 110 13074, 3 13075, 18 4611, 5 13076, 198 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5591] | 0.55 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101100' == '11101110' E - 11101110 E ? ^ - E + 01101100 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 60973, 54 60974, 254 60975, 163 254, 192 192, 10 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5681] | 0.62 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100000' == '00100001' E - 00100001 E ? ^ E + 00100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 64472, 62 64473, 113 64474, 79 20391, 38 64475, 235 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5812] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230783a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 49293, 118 49294, 30 49295, 174 30, 146 52, 28 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5552] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101001' == '11101000' E - 11101000 E ? ^ ^ E + 01101001 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 57934, 54 57935, 249 57936, 53 249, 246 34, 190 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5773] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127774250>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 63111, 102 63112, 202 63113, 210 202, 26 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5852] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122322ad0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 59645, 110 59646, 185 59647, 180 46265, 217 59648, 185 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5969] | 0.62 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c780a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 38079, 64 38080, 127 38081, 149 435, 245 436, 184 437, 24 438, 113 28952, 123 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5735] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 26756, 106 26757, 72 26758, 133 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5893] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023610>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 10817, 110 10818, 234 10819, 176 45290, 118 10820, 192 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5640] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101000' == '01101010' E - 01101010 E ? ^ - E + 11101000 E ? ^ + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 31222, 46 31223, 181 31224, 10 2741, 65 31225, 58 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5932] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e590>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 62259, 126 62260, 92 62261, 207 53113, 110 62262, 195 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5592] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101010' E - 10101010 E ? ^ - E + 00101000 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 23151, 54 23152, 27 23153, 211 27, 169 101, 33 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5813] | 0.56 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230783a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 10878, 118 10879, 243 10880, 210 243, 216 59, 68 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5774] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127777d90>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 35928, 102 35929, 34 35930, 203 34, 156 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5736] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f331c60>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 2976, 106 2977, 147 2978, 78 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5853] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8ca60>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 34213, 110 34214, 22 34215, 54 13846, 234 34216, 51 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5682] | 0.49 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101001' E - 10101001 E ? ^ ^ E + 00101000 E ? ^ ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 50480, 62 50481, 68 50482, 187 48097, 63 50483, 40 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5641] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '00101010' E - 00101010 E ? - E + 00101000 E ? + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 34460, 46 34461, 112 34462, 167 42864, 3 34463, 194 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5894] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023610>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 50157, 110 50158, 22 50159, 21 5398, 199 50160, 33 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5933] | 0.60 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642701f0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 43005, 126 43006, 149 43007, 201 51498, 245 51754, 136 43008, 132 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5593] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100101' == '01100100' E - 01100100 E ? ^ E + 01100101 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 38246, 54 38247, 241 38248, 163 241, 6 80, 167 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5737] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f331fc0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 21818, 106 21819, 124 21820, 129 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5970] | 0.49 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9480>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 4048, 64 4049, 254 4050, 111 478, 208 479, 105 480, 48 481, 224 57392, 236 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5775] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12732e680>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 43857, 102 43858, 68 43859, 24 68, 52 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5854] | 0.54 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1223235b0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 7518, 110 7519, 41 7520, 111 28457, 121 7521, 142 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5814] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230783a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 14247, 118 14248, 254 14249, 190 254, 140 235, 146 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5683] | 0.48 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101011' E - 10101011 E + 00101000 tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 60205, 62 60206, 83 60207, 17 4502, 41 60208, 81 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5642] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '10101010' E - 10101010 E ? ^ - E + 00101000 E ? ^ + tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 16614, 46 16615, 195 16616, 110 28355, 38 16617, 252 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5895] | 0.52 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023610>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 44239, 110 44240, 93 44241, 201 51549, 72 44242, 17 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json-i5738] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f331fc0>, mode = <AddressingMode.ACCUMULATOR: 12> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6a.json 32826, 106 32827, 42 32828, 10 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5594] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01101000' == '11101000' E - 11101000 E ? ^ E + 01101000 E ? ^ tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 31882, 54 31883, 139 31884, 228 139, 32 245, 15 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5934] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270c70>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 1454, 126 1455, 244 1456, 158 40496, 136 40752, 158 1457, 7 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5971] | 0.65 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9420>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 35151, 64 35152, 210 35153, 6 422, 98 423, 205 424, 200 425, 48 12488, 175 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5776] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 63942, 102 63943, 83 63944, 76 83, 254 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5815] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf5b0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 27086, 118 27087, 174 27088, 153 174, 243 206, 76 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5855] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117dc03a0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 20256, 110 20257, 253 20258, 255 65533, 45 20259, 81 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5643] | 0.51 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100000' == '10100001' E - 10100001 E ? ^ E + 10100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 57807, 46 57808, 66 57809, 60 15426, 104 57810, 95 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5684] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '11101110' E - 11101110 E ? - E + 11101101 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 10198, 62 10199, 163 10200, 48 12515, 245 10201, 169 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5595] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100101' == '10100110' E - 10100110 E ? - E + 10100101 E ? + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 52134, 54 52135, 66 52136, 108 66, 120 1, 234 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5896] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023cd0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 848, 110 849, 251 850, 195 50171, 47 851, 110 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5777] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7be0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 43591, 102 43592, 219 43593, 47 219, 0 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5935] | 0.57 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438e710>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 25698, 126 25699, 38 25700, 44 11401, 56 25701, 185 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5685] | 0.60 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101100' == '10101100' E - 10101100 E ? ^ E + 00101100 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 28588, 62 28589, 97 28590, 151 38808, 39 28591, 128 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5816] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf430>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 6486, 118 6487, 165 6488, 122 165, 21 0, 209 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5856] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 3431, 110 3432, 56 3433, 30 7736, 30 3434, 242 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5972] | 0.65 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127ce2c50>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 50332, 64 50333, 172 50334, 124 420, 88 421, 247 422, 182 423, 75 19382, 116 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5644] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101100' == '10101100' E - 10101100 E ? ^ E + 00101100 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 15289, 46 15290, 60 15291, 107 27452, 53 15292, 207 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5596] | 0.56 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100100' == '10100111' E - 10100111 E + 00100100 tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 40940, 54 40941, 101 40942, 73 101, 211 247, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5897] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fb1f940>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 39487, 110 39488, 1 39489, 107 27393, 23 39490, 17 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5778] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7be0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 2912, 102 2913, 116 2914, 113 116, 30 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5936] | 0.49 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270cd0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 31278, 126 31279, 90 31280, 230 58931, 127 59187, 188 31281, 119 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5817] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf490>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 57138, 118 57139, 12 57140, 69 12, 29 48, 177 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5857] | 0.58 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 31631, 110 31632, 158 31633, 197 50590, 5 31634, 122 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5686] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100100' == '10100101' E - 10100101 E ? ^ E + 10100100 E ? ^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 40679, 62 40680, 186 40681, 218 55889, 202 56145, 81 40682, 161 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5898] | 0.53 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fb1f940>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 45020, 110 45021, 90 45022, 240 61530, 75 45023, 247 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5597] | 0.48 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10101001' == '00101011' E - 00101011 E ? ^ - E + 10101001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 10388, 54 10389, 97 10390, 96 97, 124 101, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5779] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 53655, 102 53656, 134 53657, 231 134, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5973] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9420>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 954, 64 955, 94 956, 138 402, 106 403, 161 404, 10 405, 135 34570, 199 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5818] | 0.54 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c8c040>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 59018, 118 59019, 71 59020, 189 71, 23 132, 59 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5937] | 0.60 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270eb0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 39862, 126 39863, 155 39864, 174 44701, 101 39865, 112 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5646] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100000' == '00100001' E - 00100001 E ? ^ E + 00100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 32707, 46 32708, 105 32709, 216 55401, 23 32710, 100 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5687] | 0.59 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00101000' == '00101011' E - 00101011 E ? ^^ E + 00101000 E ? ^^ tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 32421, 62 32422, 55 32423, 48 12422, 57 32424, 232 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5858] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122322b90>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 3518, 110 3519, 20 3520, 78 19988, 27 3521, 96 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5780] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7be0>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 16236, 102 16237, 189 16238, 25 189, 236 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5598] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100000' == '01100011' E - 01100011 E + 11100000 tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 34482, 54 34483, 207 34484, 79 207, 219 59, 109 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5899] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fb1f940>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 20001, 110 20002, 25 20003, 254 65049, 21 20004, 140 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5974] | 0.63 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a82e0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 32993, 64 32994, 47 32995, 60 482, 153 483, 234 484, 140 485, 34 8844, 161 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5647] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100000' == '01100000' E - 01100000 E ? ^ E + 11100000 E ? ^ tests/test_cpu.py:80: AssertionError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 5502, 46 5503, 51 5504, 5 1331, 98 5505, 72 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5819] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf2b0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 53383, 118 53384, 87 53385, 78 87, 104 136, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5859] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122323190>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 23950, 110 23951, 46 23952, 15 3886, 176 23953, 189 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5781] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 47754, 102 47755, 120 47756, 83 120, 229 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5938] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438ebf0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 27584, 126 27585, 117 27586, 74 18959, 79 19215, 211 27587, 85 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5599] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '01101111' E - 01101111 E + 11101101 tests/test_cpu.py:80: AssertionError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 4424, 54 4425, 227 4426, 214 227, 137 32, 237 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5688] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100001' == '01100010' E - 01100010 E ? ^ - E + 11100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 13027, 62 13028, 39 13029, 173 44293, 222 44549, 248 13030, 86 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5900] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a078160>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 34473, 126 34474, 66 34475, 88 22665, 250 34476, 185 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5975] | 0.64 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1225447c0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 55485, 64 55486, 254 55487, 71 312, 44 313, 234 314, 171 315, 45 11691, 137 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5820] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bfc10>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 58580, 118 58581, 104 58582, 250 104, 156 125, 14 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5860] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1223235b0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 32334, 110 32335, 8 32336, 244 62472, 149 32337, 249 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json-i5782] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = <AddressingMode.ZERO_PAGE: 2> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/66.json 55670, 102 55671, 128 55672, 194 128, 138 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5939] | 0.61 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270670>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 53565, 126 53566, 149 53567, 200 51218, 201 51474, 191 53568, 65 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5689] | 0.64 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '01100001' == '01100010' E - 01100010 E ? - E + 01100001 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 64176, 62 64177, 38 64178, 66 17083, 180 64179, 183 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5901] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a0783a0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 57940, 126 57941, 12 57942, 187 48105, 167 57943, 220 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5821] | 0.57 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf5b0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 26903, 118 26904, 192 26905, 75 192, 180 152, 124 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5861] | 0.56 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1223235b0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 22172, 110 22173, 217 22174, 139 35801, 182 22175, 71 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5976] | 0.66 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1225447c0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 1351, 64 1352, 76 1353, 48 378, 136 379, 95 380, 143 381, 131 33679, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5940] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270e50>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 17335, 126 17336, 254 17337, 3 957, 62 1213, 226 17338, 197 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5902] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a0783a0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 33863, 126 33864, 196 33865, 158 40591, 170 40847, 203 33866, 103 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5690] | 0.49 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11100000' == '01100010' E - 01100010 E ? ^ - E + 11100000 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 63191, 62 63192, 126 63193, 244 62558, 212 62814, 80 63194, 49 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5862] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117dc03a0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 32117, 110 32118, 200 32119, 81 20936, 108 32120, 237 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5822] | 0.49 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122fbf400>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 44879, 118 44880, 67 44881, 201 67, 9 170, 171 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5941] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270c70>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 48280, 126 48281, 218 48282, 155 39786, 172 40042, 100 48283, 135 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5977] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12788fb20>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 27780, 64 27781, 76 27782, 224 469, 209 470, 215 471, 2 472, 60 15362, 183 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5903] | 0.57 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a0783a0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 49638, 126 49639, 234 49640, 170 43548, 23 43804, 72 49641, 128 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5691] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '10100101' == '10100111' E - 10100111 E ? - E + 10100101 E ? + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 27250, 62 27251, 242 27252, 142 36427, 100 36683, 251 27253, 58 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5863] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 21791, 110 21792, 54 21793, 42 10806, 240 21794, 200 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5823] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c8c220>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 62331, 118 62332, 30 62333, 226 30, 163 243, 49 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5942] | 0.55 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270c70>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 54131, 126 54132, 154 54133, 38 9973, 108 54134, 54 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5692] | 0.47 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '11101101' == '01101110' E - 01101110 E + 11101101 tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 10740, 62 10741, 131 10742, 27 7109, 219 10743, 122 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5978] | 0.58 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127ce00a0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 48490, 64 48491, 115 48492, 134 460, 36 461, 1 462, 116 463, 205 52596, 198 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5904] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x104978eb0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 58082, 126 58083, 153 58084, 52 13412, 203 13668, 173 58085, 97 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5824] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c339a0>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 17209, 118 17210, 177 17211, 248 177, 10 158, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5864] | 0.56 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 64506, 110 64507, 185 64508, 134 34489, 138 64509, 129 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5943] | 0.47 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270c70>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 61670, 126 61671, 226 61672, 235 60392, 225 61673, 25 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5693] | 0.56 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) daveNES.step_program() assert test['final']['pc'] == daveNES.r_program_counter assert test['final']['s'] == daveNES.r_stack_pointer assert test['final']['a'] == daveNES.r_accumulator assert test['final']['x'] == daveNES.r_index_X assert test['final']['y'] == daveNES.r_index_Y # and the registers > assert f'{test["final"]["p"]:08b}' == "".join(str(int(daveNES.r_status[k])) for k in daveNES.r_status.keys())[::-1] E AssertionError: assert '00100001' == '10100011' E - 10100011 E ? ^ - E + 00100001 E ? ^ + tests/test_cpu.py:80: AssertionError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 43929, 62 43930, 125 43931, 105 26896, 148 27152, 132 43932, 109 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json-i5825] | 0.60 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bf490>, mode = <AddressingMode.ZERO_PAGE_X: 3> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/76.json 14832, 118 14833, 245 14834, 40 245, 64 134, 237 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5979] | 0.63 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9420>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 61892, 64 61893, 69 61894, 198 335, 238 336, 63 337, 43 338, 108 27691, 17 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5905] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023610>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 978, 126 979, 33 980, 2 766, 223 981, 229 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5865] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 64729, 110 64730, 174 64731, 239 61358, 39 64732, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5944] | 0.56 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270cd0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 58345, 126 58346, 102 58347, 92 23585, 255 23841, 61 58348, 224 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5906] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023610>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 62877, 126 62878, 190 62879, 113 29006, 140 29262, 25 62880, 18 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5866] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 8465, 110 8466, 48 8467, 182 46640, 103 8468, 101 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5980] | 0.63 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12788fc40>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 53003, 64 53004, 137 53005, 200 436, 111 437, 154 438, 244 439, 236 60660, 175 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5945] | 0.49 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270eb0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 10589, 126 10590, 14 10591, 233 59803, 130 10592, 171 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json-i5867] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = <AddressingMode.ABSOLUTE: 5> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6e.json 43851, 110 43852, 211 43853, 185 47571, 167 43854, 187 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5907] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023610>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 64774, 126 64775, 254 64776, 169 43457, 223 43713, 203 64777, 20 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5981] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127ce10f0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 49791, 64 49792, 41 49793, 219 419, 209 420, 246 421, 82 422, 217 55634, 30 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5946] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270670>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 57999, 126 58000, 114 58001, 79 20292, 130 20548, 207 58002, 120 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5908] | 0.61 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a023cd0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 58169, 126 58170, 51 58171, 137 35313, 1 58172, 191 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5982] | 0.63 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127c23dc0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 536, 64 537, 142 538, 201 451, 52 452, 246 453, 104 454, 194 49768, 74 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5947] | 0.59 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270670>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 63098, 126 63099, 32 63100, 60 15592, 140 63101, 240 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5983] | 0.56 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9480>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 29113, 64 29114, 17 29115, 183 378, 13 379, 203 380, 52 381, 240 61492, 186 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json-i5948] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642701f0>, mode = <AddressingMode.ABSOLUTE_X: 6> def ROR(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:470: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7e.json 1958, 126 1959, 142 1960, 27 7076, 233 1961, 248 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5984] | 0.67 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1225447c0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 10141, 64 10142, 161 10143, 50 381, 44 382, 122 383, 70 384, 173 44358, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5985] | 0.66 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127ce3c70>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 15067, 64 15068, 4 15069, 224 503, 13 504, 93 505, 212 506, 142 36564, 166 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5986] | 0.52 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127ce10f0>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 35523, 64 35524, 39 35525, 113 331, 122 332, 151 333, 208 334, 123 31696, 107 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json-i5987] | 0.62 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1278e8040>, mode = None def RTI(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:473: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/40.json 2561, 64 2562, 207 2563, 59 258, 148 259, 172 260, 3 261, 246 62979, 36 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7351] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105873a60>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 50885, 186 50886, 114 50887, 158 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7354] | 0.24 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f231f0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 21576, 186 21577, 194 21578, 95 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7357] | 0.23 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1642701f0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 21903, 186 21904, 80 21905, 189 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7360] | 0.25 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1205231c0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 33847, 186 33848, 183 33849, 36 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7366] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105e5e560>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 27621, 186 27622, 118 27623, 101 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7363] | 0.21 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12ea14790>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 40906, 186 40907, 49 40908, 229 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7375] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10783bdf0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 58623, 186 58624, 167 58625, 75 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7369] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x137fbf460>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 681, 186 682, 217 683, 200 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7384] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x146cac7c0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 14157, 186 14158, 130 14159, 221 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7390] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x124595c00>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 35512, 186 35513, 64 35514, 127 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7352] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12ca41ea0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 4841, 186 4842, 185 4843, 237 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7358] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16438eef0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 46961, 186 46962, 87 46963, 110 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7381] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7d00>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 46198, 186 46199, 34 46200, 66 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7378] | 0.27 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 26518, 186 26519, 196 26520, 193 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7355] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117ebf3d0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 23489, 186 23490, 85 23491, 232 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7367] | 0.25 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f5b10c0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 19424, 186 19425, 76 19426, 132 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7361] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1058efd00>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 29337, 186 29338, 3 29339, 88 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7372] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12212fdc0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 49005, 186 49006, 108 49007, 80 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7364] | 0.25 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16ea0b3d0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 32594, 186 32595, 7 32596, 241 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7393] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13fcaab60>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 50988, 186 50989, 109 50990, 160 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7376] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x106592560>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 10283, 186 10284, 5 10285, 124 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7387] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x101c92560>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 2792, 186 2793, 243 2794, 91 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7370] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1715c8850>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 5519, 186 5520, 130 5521, 19 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7391] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x124073fd0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 44675, 186 44676, 151 44677, 174 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7382] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11132a560>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 61000, 186 61001, 172 61002, 62 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7385] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16a9e6500>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 53784, 186 53785, 47 53786, 31 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7379] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1220fe3e0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 35110, 186 35111, 77 35112, 68 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7353] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12cbb2980>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 64260, 186 64261, 170 64262, 94 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7395] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1211087c0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 54041, 186 54042, 113 54043, 104 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7362] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x120299b40>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 53276, 186 53277, 126 53278, 106 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7359] | 0.22 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164270c70>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 48340, 186 48341, 179 48342, 253 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7373] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x178b460e0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 10723, 186 10724, 198 10725, 189 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7356] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f78160>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 31027, 186 31028, 49 31029, 243 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7368] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33be0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 27454, 186 27455, 175 27456, 253 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7365] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16eac40a0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 43778, 186 43779, 23 43780, 28 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7388] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12788ff40>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 31874, 186 31875, 124 31876, 222 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7399] | 0.32 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x104978eb0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 1579, 186 1580, 212 1581, 171 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7397] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1230bfc10>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 59331, 186 59332, 180 59333, 7 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7394] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13fc7b820>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 52448, 186 52449, 219 52450, 36 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7383] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127777d90>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 39235, 186 39236, 181 39237, 156 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7377] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12eee81c0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 9670, 186 9671, 142 9672, 136 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7350] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10f000760>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 909, 186 910, 99 911, 195 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7392] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1078abdf0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 58230, 186 58231, 230 58232, 117 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7386] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16a9e5600>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 31184, 186 31185, 34 31186, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7371] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x137fbf400>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 11017, 186 11018, 29 11019, 151 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7380] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1220fe380>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 59371, 186 59372, 127 59373, 159 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7396] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127dbf400>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 39732, 186 39733, 154 39734, 151 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7389] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127bbcfa0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 39104, 186 39105, 229 39106, 118 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7374] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x178b451b0>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 56547, 186 56548, 56 56549, 246 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json-i7398] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122e57a60>, mode = None def TSX(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:537: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ba.json 59622, 186 59623, 187 59624, 36 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7452] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x102ed6560>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 61438, 154 61439, 143 61440, 102 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7454] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x137eb06a0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 10069, 154 10070, 10 10071, 225 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7455] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c33e20>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 30809, 154 30810, 129 30811, 150 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7451] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1245952a0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 24958, 154 24959, 147 24960, 40 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7453] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x128550460>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 41217, 154 41218, 40 41219, 228 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7457] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12cd7c130>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 39284, 154 39285, 35 39286, 152 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7460] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8c400>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 61474, 154 61475, 157 61476, 191 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7461] | 0.34 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1205f30d0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 56536, 154 56537, 53 56538, 176 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7450] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12771f760>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 5395, 154 5396, 39 5397, 215 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7462] | 0.35 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1051c0eb0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 47607, 154 47608, 59 47609, 103 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7458] | 0.28 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127e780a0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 13142, 154 13143, 206 13144, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7459] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105f33bb0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 63146, 154 63147, 158 63148, 5 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7464] | 0.33 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fdfffa0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 53207, 154 53208, 82 53209, 200 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7466] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x103215000>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 35758, 154 35759, 244 35760, 128 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7456] | 0.20 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x118bce620>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 36538, 154 36539, 131 36540, 163 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7465] | 0.19 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x103987a90>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 26685, 154 26686, 206 26687, 79 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7470] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9480>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 59278, 154 59279, 5 59280, 50 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7473] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x136a783a0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 8984, 154 8985, 187 8986, 95 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7476] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1647d47f0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 34070, 154 34071, 156 34072, 248 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7463] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107a7e560>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 3244, 154 3245, 146 3246, 63 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7467] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16a4d6b60>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 2458, 154 2459, 221 2460, 102 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7478] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7be0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 45748, 154 45749, 96 45750, 235 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7469] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122dfd1e0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 24808, 154 24809, 52 24810, 23 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7468] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x137c30fa0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 63373, 154 63374, 28 63375, 18 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7472] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11c82c460>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 61130, 154 61131, 60 61132, 231 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7471] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1243acc10>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 62595, 154 62596, 194 62597, 137 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7483] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11850eb60>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 27231, 154 27232, 187 27233, 26 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7475] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1008d1000>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 60425, 154 60426, 114 60427, 104 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7481] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f6be3e0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 12359, 154 12360, 146 12361, 35 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7474] | 0.28 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12f1bcbe0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 54987, 154 54988, 154 54989, 58 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7477] | 0.25 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1058efd00>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 8288, 154 8289, 238 8290, 250 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7480] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x100ca8eb0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 19251, 154 19252, 1 19253, 112 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7479] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x178a5ca30>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 27405, 154 27406, 117 27407, 135 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7485] | 0.23 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1151ac790>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 1414, 154 1415, 226 1416, 238 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7482] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12ffbe1a0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 5697, 154 5698, 68 5699, 18 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7484] | 0.22 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12e92fdc0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 1913, 154 1914, 224 1915, 160 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7486] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1275a9480>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 14440, 154 14441, 112 14442, 103 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7489] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13c5d5a50>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 30838, 154 30839, 245 30840, 83 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7487] | 0.24 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x136a21ae0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 20515, 154 20516, 241 20517, 183 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7490] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10383bbe0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 31164, 154 31165, 75 31166, 216 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7488] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164559270>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 51547, 154 51548, 157 51549, 90 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7493] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1715ca2c0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 28574, 154 28575, 55 28576, 154 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7495] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1078abdf0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 12302, 154 12303, 109 12304, 237 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7494] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12c1a9120>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 6200, 154 6201, 91 6202, 63 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7502] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 2, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x178a5eb90>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 34690, 152 34691, 131 34692, 43 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7492] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122dfd7e0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 32829, 154 32830, 51 32831, 6 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7499] | 0.34 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x120299b40>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 19184, 154 19185, 244 19186, 64 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7491] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11132a560>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 54161, 154 54162, 58 54163, 46 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7500] | 0.34 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 0, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10783bd00>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 35923, 152 35924, 136 35925, 81 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7503] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 3, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117be9690>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 34397, 152 34398, 65 34399, 16 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7505] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 5, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16eac4160>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 33779, 152 33780, 178 33781, 66 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7496] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x10f000760>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 38485, 154 38486, 110 38487, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7498] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f723460>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 37264, 154 37265, 103 37266, 105 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json-i7497] | 0.25 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107d33df0>, mode = None def TXS(self, mode: AddressingMode): > self.cpu.r_stack_pointer = self.r_index_X E AttributeError: 'MOS6502_OpCodes' object has no attribute 'r_index_X' src/cpu/opcodes.py:544: AttributeError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9a.json 19395, 154 19396, 233 19397, 4 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7501] | 0.22 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 1, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127e780a0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 40923, 152 40924, 65 40925, 203 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7506] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 6, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127a56680>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 9729, 152 9730, 147 9731, 182 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7504] | 0.27 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 4, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fb1f940>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 17786, 152 17787, 186 17788, 224 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7508] | 0.32 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 8, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x105273d00>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 33358, 152 33359, 139 33360, 34 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7514] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 14, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122e577c0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 31590, 152 31591, 214 31592, 192 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7509] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 9, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16a7b1600>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 29550, 152 29551, 1 29552, 153 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7507] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 7, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13fcaba90>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 37183, 152 37184, 83 37185, 210 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7518] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 18, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12771f760>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 52605, 152 52606, 118 52607, 251 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7510] | 0.22 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 10, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164559270>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 9223, 152 9224, 204 9225, 18 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7511] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 11, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117a14790>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 53288, 152 53289, 150 53290, 94 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7513] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 13, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117e4d2d0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 46111, 152 46112, 149 46113, 116 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7512] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 12, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12ca422c0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 34347, 152 34348, 219 34349, 203 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7524] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 24, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x104a3bdf0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 63787, 152 63788, 83 63789, 176 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7521] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 21, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x118bced40>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 65255, 152 65256, 46 65257, 141 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7522] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 22, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f331c00>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 62160, 152 62161, 202 62162, 116 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7516] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 16, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x178a5f1f0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 29043, 152 29044, 1 29045, 228 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7523] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 23, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8cbe0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 5081, 152 5082, 183 5083, 13 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7515] | 0.22 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 15, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1204bd600>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 11975, 152 11976, 156 11977, 229 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7517] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 17, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f45fdf0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 18239, 152 18240, 77 18241, 159 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7519] | 0.24 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 19, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117be9930>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 2788, 152 2789, 183 2790, 30 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7526] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 26, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12fc8dfc0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 26829, 152 26830, 223 26831, 54 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7520] | 0.23 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 20, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16ea0ad10>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 39903, 152 39904, 183 39905, 11 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7525] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 25, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127ce10f0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 40205, 152 40206, 57 40207, 88 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7527] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 27, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1369bf4f0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 51485, 152 51486, 155 51487, 210 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7529] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 29, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16a9e6500>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 32328, 152 32329, 238 32330, 183 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7530] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 30, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13fbbe6b0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 1493, 152 1494, 34 1495, 228 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7532] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 32, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x164559270>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 63144, 152 63145, 245 63146, 148 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7533] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 33, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x137eb06a0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 29227, 152 29228, 127 29229, 173 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7542] | 0.31 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 42, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12ecc2140>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 46040, 152 46041, 134 46042, 217 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7535] | 0.32 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 35, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x12cbb2a40>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 45291, 152 45292, 94 45293, 0 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7534] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 34, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x124594c10>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 39009, 152 39010, 214 39011, 7 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7528] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 28, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x122c8c040>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 37734, 152 37735, 150 37736, 223 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7539] | 0.35 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 39, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x178a5f1f0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 51445, 152 51446, 69 51447, 63 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7531] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 31, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1113c7be0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 3869, 152 3870, 101 3871, 38 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7541] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 41, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x1058efd00>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 41393, 152 41394, 197 41395, 93 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7538] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 38, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x11f5b0e20>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 22559, 152 22560, 199 22561, 187 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7543] | 0.29 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 43, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117ebc310>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 3336, 152 3337, 231 3338, 25 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7536] | 0.20 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 36, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127dbf400>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 19718, 152 19719, 123 19720, 55 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7545] | 0.30 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 45, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x103215000>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 36379, 152 36380, 208 36381, 17 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7537] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 37, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x118b201c0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 3719, 152 3720, 118 3721, 140 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7547] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 47, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x127bbcfa0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 33137, 152 33138, 202 33139, 179 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7540] | 0.22 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 40, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x117f8c400>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 20015, 152 20016, 87 20017, 155 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7544] | 0.21 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 44, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x13a078160>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 23689, 152 23690, 117 23691, 254 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7546] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 46, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x16a9e5a80>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 37479, 152 37480, 247 37481, 50 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7549] | 0.15 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 49, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x107a7e560>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 10559, 152 10560, 124 10561, 26 | |||
| Failed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json-i7548] | 0.13 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python i = 48, json_filename = '/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json' @pytest.mark.parametrize("json_filename, i", zip(json_files_reshaped, inds)) def test_daveNES(i, json_filename): """Unit test for daveNES. Iterates over the json file. Decorated with a pytest parametrize so as to iterate over the whole list of json test files. Args: i (int): Iterate of json json_filename (str): unit test file. """ print(f'ind: {i}, filename: {json_filename}') test = get_json(json_filename)[i] daveNES = init_daveNES(test) > daveNES.step_program() tests/test_cpu.py:71: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ src/cpu/cpu.py:92: in step_program f(a) # run the opcode with the specified addressing mode _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <cpu.opcodes.MOS6502_OpCodes object at 0x131f42bf0>, mode = None def TYA(self, mode: AddressingMode): > raise NotImplementedError E NotImplementedError src/cpu/opcodes.py:547: NotImplementedError[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/98.json 8039, 152 8040, 214 8041, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i282] | 0.27 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 30867, 121 30868, 226 30869, 195 49972, 152 50228, 130 30870, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i470] | 0.15 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 34751, 37 34752, 166 34753, 11 166, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i94] | 0.17 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 16970, 101 16971, 33 16972, 89 33, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i658] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 14228, 57 14229, 12 14230, 159 40846, 21 14231, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i0] | 0.17 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 26710, 105 26711, 74 26712, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i188] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 38361, 109 38362, 252 38363, 216 55548, 192 38364, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i564] | 0.53 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 25591, 45 25592, 218 25593, 141 36314, 163 25594, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i846] | 0.21 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 59017, 10 59018, 120 59019, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i940] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 4218, 22 4219, 55 4220, 248 55, 63 185, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1316] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 10861, 48 10862, 121 10863, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i376] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 42104, 113 42105, 174 42106, 247 174, 90 175, 1 434, 46 base: 174 lo: 90 hi: 1 deref_base: 346 y_register: 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i752] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 5897, 49 5898, 103 5899, 27 103, 36 104, 213 54540, 198 54796, 209 base: 103 lo: 36 hi: 213 deref_base: 54564 y_register: 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1786] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 2811, 184 2812, 18 2813, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1692] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 50251, 216 50252, 42 50253, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1222] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 62205, 36 62206, 44 62207, 192 44, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1034] | 0.55 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 28799, 30 28800, 148 28801, 101 26046, 170 28802, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1504] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 23455, 80 23456, 116 23457, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1410] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 34029, 16 34030, 15 34031, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1598] | 0.27 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 8039, 112 8040, 11 8041, 47 8052, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1128] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 9727, 176 9728, 135 9729, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i471] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 64151, 37 64152, 200 64153, 153 200, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i95] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 13592, 101 13593, 197 13594, 7 197, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i1] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 33466, 105 33467, 247 33468, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i847] | 0.26 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 33684, 10 33685, 71 33686, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1693] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 18168, 216 18169, 67 18170, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1411] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 20228, 16 20229, 108 20230, 193 20338, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1505] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 97, 80 98, 238 99, 166 81, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1129] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 52368, 176 52369, 239 52370, 138 52353, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i283] | 0.73 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 45841, 121 45842, 198 45843, 68 17549, 253 17805, 249 45844, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1599] | 0.62 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 6961, 112 6962, 132 6963, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1223] | 0.52 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 18873, 36 18874, 95 18875, 36 95, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1787] | 0.65 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 20697, 184 20698, 13 20699, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1317] | 0.62 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 28966, 48 28967, 192 28968, 68 29160, 153 28904, 214 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i753] | 0.29 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 50750, 49 50751, 10 50752, 34 10, 136 11, 14 3754, 135 base: 10 lo: 136 hi: 14 deref_base: 3720 y_register: 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i659] | 0.93 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 14213, 57 14214, 252 14215, 218 55921, 137 56177, 163 14216, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i941] | 0.24 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 63377, 22 63378, 250 63379, 183 250, 174 32, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i377] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 33069, 113 33070, 187 33071, 101 187, 80 188, 122 31300, 18 31556, 230 base: 187 lo: 80 hi: 122 deref_base: 31312 y_register: 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i189] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 22026, 109 22027, 86 22028, 223 57174, 211 22029, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1694] | 0.13 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 22033, 216 22034, 16 22035, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i848] | 0.10 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 3440, 10 3441, 208 3442, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1130] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 2799, 176 2800, 105 2801, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i96] | 0.83 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 34185, 101 34186, 235 34187, 69 235, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i565] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 28051, 45 28052, 76 28053, 25 6476, 26 28054, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i472] | 0.21 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 27090, 37 27091, 242 27092, 159 242, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1035] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 50328, 30 50329, 70 50330, 231 59209, 28 50331, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i849] | 0.30 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 30626, 10 30627, 151 30628, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i2] | 0.13 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 41553, 105 41554, 12 41555, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1695] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 25067, 216 25068, 179 25069, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i942] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 33629, 22 33630, 44 33631, 164 44, 92 154, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i754] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 63540, 49 63541, 198 63542, 120 198, 100 199, 109 27951, 75 28207, 75 base: 198 lo: 100 hi: 109 deref_base: 28004 y_register: 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1412] | 0.20 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 35915, 16 35916, 17 35917, 171 35934, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1506] | 0.77 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 33303, 80 33304, 96 33305, 122 33401, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i3] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 35342, 105 35343, 12 35344, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i190] | 0.26 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 63925, 109 63926, 206 63927, 191 49102, 100 63928, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1131] | 0.15 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 6191, 176 6192, 199 6193, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i378] | 0.31 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 11340, 113 11341, 254 11342, 21 254, 80 255, 245 62725, 92 62981, 67 base: 254 lo: 80 hi: 245 deref_base: 62800 y_register: 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i473] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 62144, 37 62145, 184 62146, 167 184, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1036] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 3862, 30 3863, 97 3864, 41 10539, 100 10795, 242 3865, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1224] | 0.65 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 40775, 36 40776, 20 40777, 89 20, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1696] | 0.15 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 43, 216 44, 9 45, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1413] | 0.19 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 21559, 16 21560, 75 21561, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i850] | 0.27 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 2247, 6 2248, 195 2249, 112 195, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1132] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 6130, 176 6131, 84 6132, 172 5960, 161 6216, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1600] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 46370, 24 46371, 45 46372, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i943] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 40921, 22 40922, 71 40923, 93 71, 246 235, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i566] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 26140, 45 26141, 63 26142, 71 18239, 45 26143, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1318] | 0.94 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 26718, 48 26719, 110 26720, 8 26830, 186 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i4] | 0.15 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 24745, 105 24746, 23 24747, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1788] | 0.49 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 48792, 184 48793, 26 48794, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i191] | 0.19 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 36965, 109 36966, 143 36967, 232 59535, 46 36968, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i474] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 9438, 37 9439, 223 9440, 217 223, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i755] | 0.32 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 61393, 49 61394, 45 61395, 228 45, 120 46, 114 29278, 203 29534, 158 base: 45 lo: 120 hi: 114 deref_base: 29304 y_register: 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i284] | 0.95 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 60141, 121 60142, 106 60143, 201 51561, 51 51817, 244 60144, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1697] | 0.14 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 24128, 216 24129, 75 24130, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i379] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 8448, 113 8449, 115 8450, 23 115, 149 116, 204 52256, 204 52512, 2 base: 115 lo: 149 hi: 204 deref_base: 52373 y_register: 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1414] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 48096, 16 48097, 213 48098, 232 48055, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i5] | 0.14 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 27533, 105 27534, 129 27535, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1133] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 24005, 176 24006, 215 24007, 235 23966, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i851] | 0.21 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 8624, 6 8625, 231 8626, 193 231, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1698] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 1961, 216 1962, 62 1963, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i192] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 15367, 109 15368, 180 15369, 42 10932, 210 15370, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1037] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 28159, 30 28160, 181 28161, 125 32152, 174 32408, 101 28162, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i567] | 0.17 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 37528, 45 37529, 250 37530, 106 27386, 77 37531, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i475] | 0.15 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 800, 37 801, 61 802, 213 61, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i6] | 0.21 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 8703, 105 8704, 224 8705, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1415] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 56682, 16 56683, 5 56684, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i660] | 0.72 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 26116, 57 26117, 183 26118, 7 1999, 123 26119, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i944] | 0.32 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 1456, 22 1457, 146 1458, 112 146, 201 87, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i97] | 0.76 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 12430, 101 12431, 145 12432, 47 145, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i756] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 25137, 49 25138, 126 25139, 233 126, 56 127, 142 36383, 67 36639, 58 base: 126 lo: 56 hi: 142 deref_base: 36408 y_register: 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i380] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 47560, 113 47561, 209 47562, 196 209, 180 210, 23 5971, 223 6227, 202 base: 209 lo: 180 hi: 23 deref_base: 6068 y_register: 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i852] | 0.24 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 43005, 6 43006, 232 43007, 241 232, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1134] | 0.18 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 45278, 176 45279, 158 45280, 158 45182, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1601] | 0.70 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 63550, 24 63551, 3 63552, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i568] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 30516, 45 30517, 44 30518, 13 3372, 19 30519, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1699] | 0.15 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 816, 216 817, 156 818, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i476] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 61181, 37 61182, 102 61183, 118 102, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i7] | 0.16 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 33338, 105 33339, 227 33340, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1789] | 0.68 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 11962, 184 11963, 248 11964, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1507] | 0.51 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 5091, 80 5092, 48 5093, 41 4885, 94 5141, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1038] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 26764, 30 26765, 33 26766, 197 50631, 36 26767, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1225] | 0.77 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 34291, 36 34292, 4 34293, 11 4, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1416] | 0.17 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 58834, 16 58835, 252 58836, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1700] | 0.18 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 12360, 88 12361, 170 12362, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i193] | 0.31 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 37138, 109 37139, 254 37140, 248 63742, 92 37141, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1135] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 38020, 176 38021, 106 38022, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i853] | 0.26 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 24790, 6 24791, 205 24792, 81 205, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i477] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 21885, 37 21886, 85 21887, 204 85, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i945] | 0.26 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 28053, 22 28054, 154 28055, 184 154, 47 120, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i8] | 0.22 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 11886, 105 11887, 212 11888, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1417] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 59800, 16 59801, 98 59802, 160 59900, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i569] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 65319, 45 65320, 175 65321, 48 12463, 179 65322, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1701] | 0.18 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 43545, 88 43546, 126 43547, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i757] | 0.30 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 16067, 49 16068, 92 16069, 119 92, 140 93, 188 48307, 235 base: 92 lo: 140 hi: 188 deref_base: 48268 y_register: 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i381] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 65351, 113 65352, 158 65353, 177 158, 204 159, 25 6428, 224 6684, 194 base: 158 lo: 204 hi: 25 deref_base: 6604 y_register: 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1136] | 0.28 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 45560, 176 45561, 173 45562, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1039] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 25166, 30 25167, 30 25168, 255 65335, 172 25169, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i194] | 0.27 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 27373, 109 27374, 59 27375, 183 46907, 106 27376, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i854] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 31249, 6 31250, 236 31251, 168 236, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i478] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 43162, 37 43163, 97 43164, 138 97, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i9] | 0.17 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 47457, 105 47458, 47 47459, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1319] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 11809, 48 11810, 238 11811, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i946] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 22638, 22 22639, 236 22640, 237 236, 254 14, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1702] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 39133, 88 39134, 35 39135, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1418] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 37077, 16 37078, 31 37079, 118 37110, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i285] | 0.67 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 9287, 121 9288, 128 9289, 47 12032, 168 12288, 83 9290, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1508] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 1447, 80 1448, 14 1449, 83 1463, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i570] | 0.30 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 49950, 45 49951, 170 49952, 87 22442, 111 49953, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i661] | 0.75 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 52792, 57 52793, 167 52794, 61 15757, 192 16013, 105 52795, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i382] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 25001, 113 25002, 172 25003, 114 172, 201 173, 234 60005, 14 60261, 89 base: 172 lo: 201 hi: 234 deref_base: 60105 y_register: 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i10] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 3431, 105 3432, 39 3433, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i758] | 0.29 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 9713, 49 9714, 255 9715, 91 255, 227 0, 225 57672, 200 57928, 157 base: 255 lo: 227 hi: 225 deref_base: 57827 y_register: 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1602] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 33057, 24 33058, 189 33059, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i98] | 0.68 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 60746, 101 60747, 164 60748, 102 164, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1137] | 0.15 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 55263, 176 55264, 61 55265, 5 55070, 65 55326, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1703] | 0.16 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 41467, 88 41468, 110 41469, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i479] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 34841, 37 34842, 159 34843, 215 159, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i195] | 0.20 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 18614, 109 18615, 205 18616, 32 8397, 126 18617, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1040] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 62627, 30 62628, 127 62629, 188 48199, 108 48455, 238 62630, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1790] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 32131, 184 32132, 141 32133, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1419] | 0.15 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 40280, 16 40281, 81 40282, 223 40363, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i855] | 0.18 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 19583, 6 19584, 29 19585, 86 29, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i947] | 0.27 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 38198, 22 38199, 74 38200, 203 74, 14 159, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1138] | 0.28 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 39730, 176 39731, 104 39732, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1704] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 22482, 88 22483, 91 22484, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1226] | 0.64 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 18201, 36 18202, 47 18203, 122 47, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i11] | 0.13 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 47931, 105 47932, 98 47933, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1320] | 0.68 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 32808, 48 32809, 110 32810, 17 32920, 76 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i571] | 0.20 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 33500, 45 33501, 171 33502, 49 12715, 243 33503, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1420] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 19165, 16 19166, 246 19167, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i196] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 41059, 109 41060, 232 41061, 141 36328, 16 41062, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i759] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 38675, 49 38676, 51 38677, 105 51, 167 52, 203 52104, 174 52360, 63 base: 51 lo: 167 hi: 203 deref_base: 52135 y_register: 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i480] | 0.20 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 2749, 37 2750, 165 2751, 135 165, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i856] | 0.23 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 47532, 6 47533, 107 47534, 244 107, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i12] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 1458, 105 1459, 195 1460, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1603] | 0.67 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 5045, 24 5046, 51 5047, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i383] | 0.27 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 64655, 113 64656, 241 64657, 135 241, 42 242, 161 41287, 86 base: 241 lo: 42 hi: 161 deref_base: 41258 y_register: 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1705] | 0.13 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 40428, 88 40429, 222 40430, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1509] | 0.51 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 38451, 80 38452, 126 38453, 124 38579, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i948] | 0.25 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 62933, 22 62934, 135 62935, 165 135, 172 243, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i572] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 34228, 45 34229, 142 34230, 28 7310, 214 34231, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1139] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 53383, 176 53384, 122 53385, 170 53251, 131 53507, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1791] | 0.49 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 3902, 184 3903, 28 3904, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1421] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 65064, 16 65065, 83 65066, 165 65149, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1041] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 34249, 30 34250, 228 34251, 110 28225, 172 28481, 105 34252, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1706] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 11389, 88 11390, 119 11391, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i481] | 0.22 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 4181, 37 4182, 151 4183, 230 151, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i286] | 0.70 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 18471, 121 18472, 186 18473, 19 4983, 104 5239, 115 18474, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i857] | 0.25 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 4194, 6 4195, 196 4196, 84 196, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i13] | 0.13 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 52049, 105 52050, 73 52051, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i197] | 0.28 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 31771, 109 31772, 144 31773, 242 62096, 226 31774, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i384] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 27810, 113 27811, 94 27812, 216 94, 115 95, 8 2163, 152 base: 94 lo: 115 hi: 8 deref_base: 2163 y_register: 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i760] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 19331, 49 19332, 49 19333, 27 49, 212 50, 20 5202, 221 5458, 26 base: 49 lo: 212 hi: 20 deref_base: 5332 y_register: 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i99] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 63925, 101 63926, 13 63927, 72 13, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i949] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 51358, 22 51359, 19 51360, 142 19, 78 101, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1140] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 38697, 176 38698, 188 38699, 203 38887, 2 38631, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i662] | 0.75 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 56259, 57 56260, 206 56261, 144 36981, 175 37237, 12 56262, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i14] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 9072, 105 9073, 197 9074, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1422] | 0.17 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 2355, 16 2356, 251 2357, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i482] | 0.31 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 4566, 37 4567, 52 4568, 209 52, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1707] | 0.16 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 50727, 88 50728, 178 50729, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i573] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 8573, 45 8574, 17 8575, 90 23057, 242 8576, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1042] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 41748, 30 41749, 103 41750, 159 40713, 125 40969, 175 41751, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i858] | 0.27 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 63756, 6 63757, 239 63758, 37 239, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1227] | 0.49 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 29111, 36 29112, 97 29113, 214 97, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1141] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 15373, 176 15374, 21 15375, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i198] | 0.30 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 20975, 109 20976, 226 20977, 0 226, 108 20978, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1321] | 0.69 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 27069, 48 27070, 138 27071, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1423] | 0.27 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 29259, 16 29260, 79 29261, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1510] | 0.10 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 30749, 80 30750, 73 30751, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1708] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 13844, 88 13845, 111 13846, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i385] | 0.45 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 23714, 113 23715, 238 23716, 59 238, 178 239, 151 38875, 39 base: 238 lo: 178 hi: 151 deref_base: 38834 y_register: 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i15] | 0.16 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 9306, 105 9307, 76 9308, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1792] | 0.59 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 19691, 184 19692, 169 19693, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i761] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 11889, 49 11890, 187 11891, 37 187, 194 188, 27 6993, 8 7249, 33 base: 187 lo: 194 hi: 27 deref_base: 7106 y_register: 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1604] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 51081, 24 51082, 187 51083, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1511] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 36567, 80 36568, 52 36569, 120 36365, 131 36621, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i483] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 59159, 37 59160, 61 59161, 153 61, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i100] | 0.70 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 63161, 117 63162, 123 63163, 71 123, 96 201, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i574] | 0.25 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 28224, 45 28225, 48 28226, 133 34096, 74 28227, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i859] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 22888, 6 22889, 49 22890, 248 49, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i950] | 0.28 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 27042, 14 27043, 21 27044, 136 34837, 240 27045, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1142] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 19652, 176 19653, 32 19654, 138 19686, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1043] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 20431, 30 20432, 177 20433, 15 3883, 189 4139, 250 20434, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i16] | 0.22 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 25625, 105 25626, 55 25627, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1709] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 58687, 88 58688, 249 58689, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1424] | 0.28 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 21001, 16 21002, 179 21003, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i199] | 0.30 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 7504, 109 7505, 122 7506, 103 26490, 55 7507, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i287] | 0.98 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 7890, 121 7891, 181 7892, 170 43558, 120 43814, 194 7893, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1512] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 11485, 80 11486, 175 11487, 181 11406, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i484] | 0.18 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 55358, 37 55359, 222 55360, 97 222, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i575] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 26918, 45 26919, 180 26920, 231 59316, 95 26921, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1228] | 0.63 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 17590, 36 17591, 77 17592, 172 77, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1143] | 0.16 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 44501, 176 44502, 174 44503, 134 44421, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i17] | 0.15 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 29181, 105 29182, 16 29183, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1710] | 0.17 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 50846, 88 50847, 177 50848, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i951] | 0.28 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 13943, 14 13944, 65 13945, 33 8513, 78 13946, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i386] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 9253, 113 9254, 65 9255, 149 65, 15 66, 127 32512, 199 32768, 179 base: 65 lo: 15 hi: 127 deref_base: 32527 y_register: 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i762] | 0.30 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 27299, 49 27300, 219 27301, 239 219, 28 220, 56 14340, 50 14596, 87 base: 219 lo: 28 hi: 56 deref_base: 14364 y_register: 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1605] | 0.50 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 37411, 24 37412, 144 37413, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i860] | 0.19 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 63913, 6 63914, 90 63915, 224 90, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i663] | 1.01 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 21684, 57 21685, 28 21686, 65 16860, 93 21687, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1425] | 0.18 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 57300, 16 57301, 20 57302, 209 57322, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i485] | 0.18 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 59520, 37 59521, 121 59522, 7 121, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i200] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 49894, 125 49895, 9 49896, 128 32818, 243 49897, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i18] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 25703, 105 25704, 112 25705, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1513] | 0.18 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 60926, 80 60927, 82 60928, 157 61010, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1144] | 0.27 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 27376, 176 27377, 18 27378, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1044] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 43274, 30 43275, 88 43276, 182 46719, 0 43277, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1711] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 11965, 88 11966, 103 11967, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1793] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 57175, 184 57176, 196 57177, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1322] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 57403, 48 57404, 157 57405, 105 57562, 156 57306, 81 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i861] | 0.29 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 26411, 6 26412, 77 26413, 239 77, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1426] | 0.29 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 57644, 16 57645, 108 57646, 200 57754, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i952] | 0.32 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 10250, 14 10251, 189 10252, 61 15805, 69 10253, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i576] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 58876, 45 58877, 155 58878, 181 46491, 160 58879, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i486] | 0.29 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 29669, 37 29670, 19 29671, 19 19, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1514] | 0.28 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 4828, 80 4829, 112 4830, 167 4686, 89 4942, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i387] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 41696, 113 41697, 48 41698, 211 48, 40 49, 157 40397, 189 base: 48 lo: 40 hi: 157 deref_base: 40232 y_register: 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i763] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 28436, 49 28437, 221 28438, 251 221, 165 222, 102 26206, 16 26462, 66 base: 221 lo: 165 hi: 102 deref_base: 26277 y_register: 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1712] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 15485, 88 15486, 230 15487, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i19] | 0.18 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 27862, 105 27863, 242 27864, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i101] | 0.94 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 13685, 117 13686, 59 13687, 227 59, 164 162, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1145] | 0.28 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 14069, 176 14070, 33 14071, 63 13848, 46 14104, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i201] | 0.29 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 43651, 125 43652, 236 43653, 223 57138, 189 57394, 29 43654, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1045] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 59139, 30 59140, 70 59141, 245 62769, 161 63025, 57 59142, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1794] | 0.59 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 38452, 184 38453, 131 38454, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i577] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 18030, 45 18031, 165 18032, 195 50085, 109 18033, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i862] | 0.24 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 2667, 6 2668, 3 2669, 16 3, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i20] | 0.19 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 63821, 105 63822, 205 63823, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1427] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 3477, 16 3478, 29 3479, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1323] | 0.68 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 19332, 48 19333, 7 19334, 227 19341, 119 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1606] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 37360, 24 37361, 73 37362, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i487] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 8602, 37 8603, 107 8604, 107 107, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1229] | 0.65 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 52936, 36 52937, 188 52938, 156 188, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1515] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 49111, 80 49112, 204 49113, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i953] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 52368, 14 52369, 255 52370, 177 45567, 138 52371, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1713] | 0.17 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 63921, 88 63922, 11 63923, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1146] | 0.17 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 60184, 176 60185, 61 60186, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i388] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 36203, 113 36204, 81 36205, 77 81, 212 82, 157 40390, 77 40646, 250 base: 81 lo: 212 hi: 157 deref_base: 40404 y_register: 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i202] | 0.30 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 36650, 125 36651, 8 36652, 34 8732, 242 36653, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i21] | 0.17 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 50049, 105 50050, 177 50051, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i764] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 58316, 49 58317, 108 58318, 36 108, 46 109, 5 1381, 160 base: 108 lo: 46 hi: 5 deref_base: 1326 y_register: 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1714] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 16951, 88 16952, 160 16953, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i863] | 0.29 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 25939, 6 25940, 213 25941, 72 213, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1428] | 0.17 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 54520, 16 54521, 32 54522, 183 54298, 189 54554, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1516] | 0.17 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 46002, 80 46003, 219 46004, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i288] | 0.80 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 9254, 121 9255, 11 9256, 97 24995, 191 9257, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i488] | 0.27 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 1142, 37 1143, 187 1144, 225 187, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1046] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 20520, 30 20521, 120 20522, 205 52672, 27 20523, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1147] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 46153, 176 46154, 178 46155, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i578] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 57862, 45 57863, 237 57864, 172 44269, 127 57865, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i22] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 48718, 105 48719, 213 48720, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1429] | 0.28 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 24304, 16 24305, 50 24306, 193 24100, 39 24356, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1607] | 0.55 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 58444, 24 58445, 90 58446, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i954] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 25034, 14 25035, 108 25036, 198 50796, 63 25037, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1715] | 0.17 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 32898, 88 32899, 6 32900, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1517] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 13784, 80 13785, 135 13786, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i203] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 29891, 125 29892, 92 29893, 114 29310, 107 29894, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i664] | 0.64 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 22252, 57 22253, 19 22254, 229 58875, 189 22255, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i864] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 56414, 6 56415, 160 56416, 16 160, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i389] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 17162, 113 17163, 174 17164, 208 174, 57 175, 48 12511, 115 base: 174 lo: 57 hi: 48 deref_base: 12345 y_register: 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1795] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 51530, 184 51531, 126 51532, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i765] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 24257, 49 24258, 83 24259, 249 83, 173 84, 226 57997, 136 58253, 224 base: 83 lo: 173 hi: 226 deref_base: 58029 y_register: 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i489] | 0.16 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 25159, 37 25160, 80 25161, 21 80, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1148] | 0.28 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 1834, 176 1835, 21 1836, 45 1857, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i23] | 0.18 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 60538, 105 60539, 17 60540, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1716] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 53207, 88 53208, 198 53209, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i579] | 0.17 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 50591, 45 50592, 83 50593, 15 3923, 117 50594, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1230] | 0.55 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 14903, 36 14904, 218 14905, 181 218, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1430] | 0.31 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 8652, 16 8653, 113 8654, 211 8511, 72 8767, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1518] | 0.28 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 8581, 80 8582, 17 8583, 182 8600, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1324] | 0.55 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 16372, 48 16373, 60 16374, 179 16178, 210 16434, 160 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i490] | 0.27 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 27521, 37 27522, 88 27523, 174 88, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1047] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 29332, 30 29333, 223 29334, 82 21036, 51 21292, 94 29335, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i102] | 0.70 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 4100, 117 4101, 228 4102, 217 228, 208 25, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i955] | 0.32 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 55685, 14 55686, 72 55687, 15 3912, 214 55688, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i24] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 21284, 105 21285, 139 21286, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i580] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 57398, 45 57399, 165 57400, 98 25253, 180 57401, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i390] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 58096, 113 58097, 172 58098, 180 172, 35 173, 47 12201, 175 base: 172 lo: 35 hi: 47 deref_base: 12067 y_register: 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1717] | 0.17 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 64523, 88 64524, 34 64525, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i865] | 0.20 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 63931, 6 63932, 53 63933, 245 53, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i204] | 0.26 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 58846, 125 58847, 216 58848, 253 64789, 107 65045, 90 58849, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1149] | 0.17 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 14923, 176 14924, 86 14925, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1796] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 25590, 184 25591, 166 25592, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1608] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 43242, 24 43243, 113 43244, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1519] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 33868, 80 33869, 68 33870, 251 33938, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i491] | 0.28 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 51522, 37 51523, 198 51524, 88 198, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1431] | 0.19 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 53441, 16 53442, 207 53443, 137 53394, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i766] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 36975, 49 36976, 183 36977, 171 183, 127 184, 21 5462, 229 5718, 153 base: 183 lo: 127 hi: 21 deref_base: 5503 y_register: 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1718] | 0.22 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 38431, 88 38432, 241 38433, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i25] | 0.14 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 23146, 105 23147, 90 23148, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1150] | 0.27 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 62453, 240 62454, 184 62455, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i866] | 0.28 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 21339, 6 21340, 29 21341, 61 29, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i289] | 0.65 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 13868, 121 13869, 49 13870, 29 7490, 208 13871, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i956] | 0.29 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 61692, 14 61693, 233 61694, 186 47849, 152 61695, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i205] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 31230, 125 31231, 249 31232, 115 29506, 185 29762, 203 31233, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1048] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 12809, 30 12810, 38 12811, 11 2980, 132 12812, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i665] | 0.70 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 49362, 57 49363, 109 49364, 113 29009, 58 29265, 31 49365, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i26] | 0.25 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 1683, 105 1684, 29 1685, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1432] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 48707, 16 48708, 127 48709, 20 48836, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1520] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 24491, 80 24492, 244 24493, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1231] | 0.66 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 31521, 36 31522, 165 31523, 14 165, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i391] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 61997, 113 61998, 132 61999, 0 132, 239 133, 143 36621, 135 36877, 153 base: 132 lo: 239 hi: 143 deref_base: 36847 y_register: 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1719] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 26025, 88 26026, 84 26027, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i581] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 14318, 45 14319, 6 14320, 241 61702, 245 14321, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1609] | 0.59 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 50841, 24 50842, 112 50843, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1325] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 31398, 48 31399, 255 31400, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i492] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 22306, 37 22307, 74 22308, 228 74, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1151] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 61901, 240 61902, 50 61903, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i867] | 0.27 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 18010, 6 18011, 76 18012, 153 76, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i767] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 19580, 49 19581, 65 19582, 218 65, 204 66, 81 20843, 254 21099, 2 base: 65 lo: 204 hi: 81 deref_base: 20940 y_register: 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i957] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 1899, 14 1900, 50 1901, 174 44594, 229 1902, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1797] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 30320, 184 30321, 4 30322, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1049] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 51419, 30 51420, 31 51421, 5 1450, 94 51422, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i27] | 0.16 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 51319, 105 51320, 226 51321, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1720] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 25076, 88 25077, 168 25078, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1433] | 0.30 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 55671, 16 55672, 201 55673, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i103] | 0.69 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 43339, 117 43340, 74 43341, 29 74, 137 80, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1521] | 0.29 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 34694, 80 34695, 161 34696, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i206] | 0.29 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 48148, 125 48149, 166 48150, 183 47047, 15 48151, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1152] | 0.17 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 13456, 240 13457, 156 13458, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i493] | 0.30 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 2747, 37 2748, 248 2749, 157 248, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i392] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 39023, 113 39024, 234 39025, 42 234, 7 235, 184 47178, 13 base: 234 lo: 7 hi: 184 deref_base: 47111 y_register: 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i582] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 14333, 45 14334, 165 14335, 119 30629, 84 14336, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i28] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 22079, 105 22080, 1 22081, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i868] | 0.28 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 6566, 6 6567, 189 6568, 91 189, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1326] | 0.58 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 58988, 48 58989, 206 58990, 41 58940, 34 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1721] | 0.16 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 24371, 88 24372, 51 24373, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i958] | 0.29 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 17291, 14 17292, 238 17293, 211 54254, 156 17294, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1153] | 0.29 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 30638, 240 30639, 123 30640, 92 30507, 160 30763, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i768] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 38920, 49 38921, 35 38922, 153 35, 185 36, 182 46691, 96 46947, 183 base: 35 lo: 185 hi: 182 deref_base: 46777 y_register: 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i290] | 0.67 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 39777, 121 39778, 231 39779, 191 49094, 218 49350, 104 39780, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1050] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 41048, 144 41049, 145 41050, 170 41195, 233 40939, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1434] | 0.16 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 21578, 16 21579, 18 21580, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1798] | 0.54 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 62483, 184 62484, 28 62485, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1522] | 0.16 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 47486, 80 47487, 219 47488, 67 47451, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i207] | 0.31 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 31625, 125 31626, 1 31627, 38 9972, 54 31628, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i29] | 0.18 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 21251, 105 21252, 35 21253, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1722] | 0.31 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 11145, 88 11146, 135 11147, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i494] | 0.17 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 25855, 37 25856, 56 25857, 129 56, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1610] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 62756, 24 62757, 200 62758, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i666] | 0.71 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 502, 57 503, 136 504, 112 28842, 73 505, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i583] | 0.17 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 33715, 45 33716, 103 33717, 62 15975, 114 33718, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i869] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 62689, 6 62690, 172 62691, 227 172, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1232] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 42419, 36 42420, 155 42421, 79 155, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1435] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 56266, 16 56267, 97 56268, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1523] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 23676, 80 23677, 19 23678, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i959] | 0.44 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 46899, 14 46900, 221 46901, 95 24541, 134 46902, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i393] | 0.32 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 639, 113 640, 56 641, 250 56, 98 57, 45 11647, 73 base: 56 lo: 98 hi: 45 deref_base: 11618 y_register: 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1051] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 6021, 144 6022, 213 6023, 99 5980, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1154] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 19544, 240 19545, 187 19546, 55 19477, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i495] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 26320, 37 26321, 127 26322, 127 127, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i30] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 2806, 105 2807, 179 2808, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i584] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 38936, 45 38937, 231 38938, 215 55271, 17 38939, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i769] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 47469, 49 47470, 30 47471, 89 30, 223 31, 89 22959, 253 23215, 19 base: 30 lo: 223 hi: 89 deref_base: 23007 y_register: 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i208] | 0.30 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 39933, 125 39934, 76 39935, 102 26258, 253 39936, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i104] | 0.77 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 57447, 117 57448, 5 57449, 177 5, 63 192, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1723] | 0.14 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 22136, 88 22137, 129 22138, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1436] | 0.29 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 51272, 16 51273, 100 51274, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1327] | 0.68 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 26621, 48 26622, 21 26623, 244 26388, 171 26644, 191 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1524] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 35292, 80 35293, 173 35294, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1611] | 0.59 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 41434, 24 41435, 235 41436, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1233] | 0.71 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 56142, 36 56143, 174 56144, 97 174, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i31] | 0.21 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 8888, 105 8889, 149 8890, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i496] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 18667, 37 18668, 79 18669, 209 79, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1155] | 0.18 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 13865, 240 13866, 219 13867, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i870] | 0.21 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 26592, 6 26593, 220 26594, 231 220, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1052] | 0.27 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 54081, 144 54082, 126 54083, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1724] | 0.18 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 61087, 88 61088, 33 61089, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i394] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 12127, 113 12128, 76 12129, 149 76, 175 77, 9 2459, 219 2715, 66 base: 76 lo: 175 hi: 9 deref_base: 2479 y_register: 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1799] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 24535, 184 24536, 222 24537, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i291] | 0.76 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 19866, 121 19867, 30 19868, 97 25035, 202 19869, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i960] | 0.31 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 61770, 14 61771, 177 61772, 23 6065, 36 61773, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i209] | 0.30 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 57971, 125 57972, 169 57973, 2 715, 137 57974, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1156] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 2022, 240 2023, 45 2024, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i585] | 0.30 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 55402, 45 55403, 245 55404, 171 44021, 189 55405, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i32] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 44257, 105 44258, 88 44259, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1437] | 0.16 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 36969, 16 36970, 185 36971, 68 36900, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i770] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 6342, 49 6343, 100 6344, 34 100, 181 101, 104 26777, 95 27033, 172 base: 100 lo: 181 hi: 104 deref_base: 26805 y_register: 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1525] | 0.15 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 41748, 80 41749, 212 41750, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1725] | 0.16 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 797, 88 798, 142 799, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i871] | 0.25 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 26889, 6 26890, 209 26891, 49 209, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1800] | 0.68 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 47617, 201 47618, 61 47619, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i497] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 13917, 37 13918, 70 13919, 37 70, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i667] | 0.62 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 23513, 57 23514, 116 23515, 166 42689, 47 23516, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1053] | 0.18 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 40825, 144 40826, 169 40827, 243 40740, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1438] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 64835, 16 64836, 13 64837, 121 64850, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1526] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 11890, 80 11891, 216 11892, 212 11852, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1726] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 56412, 88 56413, 140 56414, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i33] | 0.15 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 63876, 105 63877, 19 63878, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1157] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 63965, 240 63966, 70 63967, 207 63781, 236 64037, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i210] | 0.28 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 24700, 125 24701, 118 24702, 169 43325, 147 43581, 116 24703, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i395] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 797, 113 798, 105 799, 177 105, 29 106, 184 47294, 69 base: 105 lo: 29 hi: 184 deref_base: 47133 y_register: 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i961] | 0.28 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 37228, 14 37229, 148 37230, 11 2964, 136 37231, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1054] | 0.27 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 27538, 144 27539, 158 27540, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i586] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 51917, 45 51918, 218 51919, 133 34266, 77 51920, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i872] | 0.28 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 27599, 6 27600, 46 27601, 57 46, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i498] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 58459, 37 58460, 61 58461, 70 61, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1612] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 36726, 24 36727, 59 36728, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i34] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 25326, 105 25327, 31 25328, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1439] | 0.29 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 33439, 16 33440, 229 33441, 89 33414, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i771] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 41766, 49 41767, 218 41768, 153 218, 35 219, 128 32875, 144 base: 218 lo: 35 hi: 128 deref_base: 32803 y_register: 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1328] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 26005, 48 26006, 63 26007, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1527] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 36180, 80 36181, 16 36182, 59 36198, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1727] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 23316, 88 23317, 80 23318, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i105] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 13670, 117 13671, 218 13672, 91 218, 253 19, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1158] | 0.18 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 44898, 240 44899, 121 44900, 103 45021, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1234] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 11704, 36 11705, 73 11706, 235 73, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i211] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 60823, 125 60824, 209 60825, 248 63647, 35 63903, 243 60826, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i962] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 10848, 14 10849, 9 10850, 169 43273, 172 10851, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1055] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 385, 144 386, 122 387, 39 509, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i499] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 59264, 37 59265, 141 59266, 71 141, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i873] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 1740, 6 1741, 138 1742, 206 138, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i396] | 0.52 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 5746, 113 5747, 177 5748, 29 177, 53 178, 82 21004, 100 21260, 244 base: 177 lo: 53 hi: 82 deref_base: 21045 y_register: 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i587] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 3394, 45 3395, 175 3396, 224 57519, 112 3397, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i35] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 22035, 105 22036, 222 22037, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1728] | 0.29 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 30832, 88 30833, 253 30834, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1159] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 31585, 240 31586, 165 31587, 150 31496, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1440] | 0.20 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 57536, 16 57537, 235 57538, 71 57517, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i292] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 27982, 121 27983, 57 27984, 249 63986, 25 27985, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i668] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 60441, 57 60442, 222 60443, 193 49444, 180 49700, 140 60444, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i106] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 41222, 117 41223, 60 41224, 44 60, 216 3, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1613] | 0.36 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 28840, 24 28841, 196 28842, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1801] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 62255, 201 62256, 130 62257, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1528] | 0.18 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 64705, 80 64706, 48 64707, 60 64755, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1329] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 5965, 48 5966, 166 5967, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1235] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 51637, 36 51638, 36 51639, 80 36, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i500] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 39961, 53 39962, 172 39963, 124 172, 212 200, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i772] | 0.52 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 17330, 49 17331, 155 17332, 152 155, 114 156, 52 13503, 125 base: 155 lo: 114 hi: 52 deref_base: 13426 y_register: 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i36] | 0.25 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 7914, 105 7915, 107 7916, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1056] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 46492, 144 46493, 216 46494, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1441] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 36290, 16 36291, 80 36292, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1729] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 6704, 88 6705, 148 6706, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i588] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 6181, 45 6182, 192 6183, 34 8896, 253 6184, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1529] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 56998, 80 56999, 18 57000, 22 57018, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i963] | 0.47 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 37690, 14 37691, 210 37692, 136 35026, 128 37693, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1160] | 0.29 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 36844, 240 36845, 106 36846, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1802] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 65529, 201 65530, 45 65531, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i212] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 15058, 125 15059, 218 15060, 174 44602, 136 44858, 22 15061, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i874] | 0.25 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 39317, 6 39318, 154 39319, 88 154, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i107] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 55208, 117 55209, 253 55210, 252 253, 179 147, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1057] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 50797, 144 50798, 218 50799, 125 50761, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i397] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 60628, 113 60629, 175 60630, 222 175, 152 176, 189 48403, 117 48659, 39 base: 175 lo: 152 hi: 189 deref_base: 48536 y_register: 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i669] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 56916, 57 56917, 208 56918, 85 21932, 186 22188, 194 56919, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i37] | 0.21 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 8763, 105 8764, 107 8765, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1236] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 38215, 36 38216, 92 38217, 237 92, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1614] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 60895, 24 60896, 212 60897, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1730] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 47290, 88 47291, 90 47292, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i293] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 52295, 121 52296, 229 52297, 252 64650, 217 64906, 59 52298, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i589] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 41812, 45 41813, 145 41814, 162 41617, 77 41815, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1330] | 0.28 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 24423, 48 24424, 76 24425, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1442] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 30817, 16 30818, 215 30819, 17 30778, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i501] | 0.29 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 50865, 53 50866, 161 50867, 145 161, 27 89, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1530] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 33178, 80 33179, 238 33180, 126 33162, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i875] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 4927, 6 4928, 80 4929, 156 80, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1161] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 40928, 240 40929, 237 40930, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i38] | 0.29 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 52557, 105 52558, 7 52559, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i773] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 50609, 49 50610, 96 50611, 8 96, 215 97, 250 64219, 233 base: 96 lo: 215 hi: 250 deref_base: 64215 y_register: 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1237] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 11214, 36 11215, 86 11216, 237 86, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1803] | 0.15 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 46065, 201 46066, 69 46067, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1615] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 57314, 24 57315, 136 57316, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i213] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 50728, 125 50729, 128 50730, 109 28122, 224 50731, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1058] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 46202, 144 46203, 167 46204, 4 46115, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i108] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 36611, 117 36612, 141 36613, 200 141, 52 63, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i964] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 46822, 14 46823, 149 46824, 23 6037, 125 46825, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1331] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 27062, 48 27063, 164 27064, 19 26972, 75 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i670] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 7930, 57 7931, 215 7932, 37 9692, 94 7933, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1731] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 57118, 88 57119, 242 57120, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i398] | 0.57 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 49783, 113 49784, 90 49785, 3 90, 84 91, 234 59923, 147 60179, 179 base: 90 lo: 84 hi: 234 deref_base: 59988 y_register: 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1804] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 54860, 201 54861, 174 54862, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1162] | 0.28 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 47031, 240 47032, 182 47033, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i502] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 54994, 53 54995, 204 54996, 132 204, 91 107, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1443] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 39423, 16 39424, 128 39425, 63 39553, 82 39297, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i294] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 21554, 121 21555, 202 21556, 249 63885, 14 64141, 169 21557, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i39] | 0.22 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 46240, 105 46241, 207 46242, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i876] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 7433, 6 7434, 162 7435, 223 162, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1616] | 0.17 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 41769, 24 41770, 233 41771, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1531] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 40491, 80 40492, 170 40493, 44 40663, 63 40407, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1238] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 21820, 36 21821, 10 21822, 68 10, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i590] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 19736, 45 19737, 162 19738, 251 64418, 93 19739, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1332] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 58593, 48 58594, 186 58595, 137 58525, 166 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i109] | 0.49 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 35808, 117 35809, 111 35810, 104 111, 47 254, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1732] | 0.28 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 15096, 88 15097, 230 15098, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1059] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 9570, 144 9571, 62 9572, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i774] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 36143, 49 36144, 49 36145, 65 49, 157 50, 245 62969, 16 base: 49 lo: 157 hi: 245 deref_base: 62877 y_register: 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1444] | 0.32 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 15038, 16 15039, 114 15040, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i214] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 44570, 125 44571, 30 44572, 138 35439, 140 44573, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1163] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 7763, 240 7764, 79 7765, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i965] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 17084, 14 17085, 108 17086, 120 30828, 158 17087, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1805] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 7027, 201 7028, 157 7029, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i40] | 0.29 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 1450, 105 1451, 193 1452, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1617] | 0.27 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 35528, 24 35529, 124 35530, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i671] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 24950, 57 24951, 227 24952, 242 62088, 192 62344, 165 24953, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1532] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 28925, 80 28926, 233 28927, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1239] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 59465, 36 59466, 35 59467, 201 35, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i503] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 11243, 53 11244, 5 11245, 181 5, 55 27, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i295] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 15544, 121 15545, 115 15546, 129 33237, 66 15547, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1060] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 40852, 144 40853, 192 40854, 199 40790, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1333] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 40589, 48 40590, 222 40591, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i877] | 0.31 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 8726, 6 8727, 174 8728, 248 174, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1733] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 28122, 88 28123, 188 28124, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1806] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 11847, 201 11848, 25 11849, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i591] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 44285, 45 44286, 87 44287, 169 43351, 66 44288, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i399] | 0.47 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 34663, 113 34664, 103 34665, 27 103, 25 104, 243 62273, 110 base: 103 lo: 25 hi: 243 deref_base: 62233 y_register: 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1618] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 29422, 24 29423, 209 29424, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1445] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 31119, 16 31120, 52 31121, 157 31173, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i41] | 0.21 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 13863, 105 13864, 110 13865, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1164] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 58482, 240 58483, 187 58484, 115 58415, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i110] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 20252, 117 20253, 106 20254, 45 106, 161 241, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i215] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 57313, 125 57314, 93 57315, 233 59725, 39 59981, 127 57316, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1533] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 4073, 80 4074, 191 4075, 110 4010, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1734] | 0.31 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 32672, 88 32673, 125 32674, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i966] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 54041, 14 54042, 12 54043, 95 24332, 226 54044, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i672] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 64400, 57 64401, 13 64402, 143 36763, 181 64403, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1061] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 12456, 144 12457, 43 12458, 218 12501, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i592] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 851, 45 852, 56 853, 121 31032, 156 854, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i775] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 50965, 49 50966, 107 50967, 194 107, 27 108, 129 33263, 88 base: 107 lo: 27 hi: 129 deref_base: 33051 y_register: 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1240] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 6466, 36 6467, 179 6468, 168 179, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i878] | 0.49 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 17796, 6 17797, 58 17798, 46 58, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1807] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 7267, 201 7268, 63 7269, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1619] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 22675, 24 22676, 17 22677, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i504] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 42557, 53 42558, 4 42559, 142 4, 8 98, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i42] | 0.25 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 48320, 105 48321, 132 48322, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1334] | 0.18 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 24393, 48 24394, 154 24395, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1165] | 0.30 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 23808, 240 23809, 255 23810, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i296] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 32151, 121 32152, 213 32153, 209 53509, 222 53765, 33 32154, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1446] | 0.32 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 31486, 16 31487, 60 31488, 71 31548, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1735] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 12684, 88 12685, 20 12686, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i111] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 24501, 117 24502, 201 24503, 60 201, 18 40, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i400] | 0.21 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 18880, 41 18881, 152 18882, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1808] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 16135, 201 16136, 136 16137, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1335] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 26511, 48 26512, 123 26513, 128 26380, 42 26636, 212 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1534] | 0.19 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 20780, 80 20781, 74 20782, 47 20856, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i216] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 32121, 125 32122, 174 32123, 160 41012, 187 41268, 205 32124, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i43] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 32878, 105 32879, 105 32880, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1062] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 17424, 144 17425, 73 17426, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1241] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 39803, 36 39804, 184 39805, 201 184, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1620] | 0.24 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 31589, 24 31590, 253 31591, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i673] | 0.32 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 51207, 57 51208, 138 51209, 136 34847, 158 35103, 86 51210, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i967] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 30608, 14 30609, 105 30610, 89 22889, 161 30611, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1166] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 63691, 240 63692, 188 63693, 71 63625, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i505] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 36899, 53 36900, 207 36901, 38 207, 55 72, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i776] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 3742, 49 3743, 228 3744, 87 228, 46 229, 8 2237, 230 base: 228 lo: 46 hi: 8 deref_base: 2094 y_register: 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i593] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 32591, 45 32592, 205 32593, 186 47821, 22 32594, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1736] | 0.30 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 34248, 88 34249, 84 34250, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i401] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 28635, 41 28636, 92 28637, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1535] | 0.30 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 14954, 80 14955, 243 14956, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i879] | 0.25 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 10016, 6 10017, 186 10018, 126 186, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1447] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 34947, 16 34948, 20 34949, 232 34969, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i297] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 35862, 121 35863, 191 35864, 71 18234, 153 18490, 53 35865, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i44] | 0.29 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 57161, 105 57162, 97 57163, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1242] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 22264, 36 22265, 36 22266, 109 36, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1809] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 62850, 201 62851, 249 62852, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1621] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 49931, 24 49932, 212 49933, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1336] | 0.28 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 50509, 48 50510, 219 50511, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1063] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 60950, 144 60951, 55 60952, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i217] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 64936, 125 64937, 104 64938, 75 19229, 27 19485, 18 64939, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i112] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 46828, 117 46829, 194 46830, 159 194, 254 130, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i674] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 62384, 57 62385, 130 62386, 225 57682, 74 57938, 219 62387, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1167] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 60327, 240 60328, 228 60329, 71 60301, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1448] | 0.30 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 41564, 16 41565, 103 41566, 61 41669, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1810] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 6893, 201 6894, 224 6895, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i880] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 6206, 6 6207, 55 6208, 219 55, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i402] | 0.21 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 34192, 41 34193, 224 34194, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i968] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 5957, 14 5958, 91 5959, 197 50523, 101 5960, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1737] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 15272, 88 15273, 91 15274, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1536] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 30879, 80 30880, 124 30881, 113 30749, 136 31005, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i506] | 0.27 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 31634, 53 31635, 234 31636, 72 234, 53 232, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i777] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 53189, 49 53190, 14 53191, 243 14, 166 15, 145 37234, 31 37490, 183 base: 14 lo: 166 hi: 145 deref_base: 37286 y_register: 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i594] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 7772, 45 7773, 158 7774, 129 33182, 29 7775, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i45] | 0.20 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 5506, 105 5507, 218 5508, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1622] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 33376, 24 33377, 99 33378, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i113] | 0.46 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 36717, 117 36718, 178 36719, 192 178, 239 107, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1243] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 22579, 36 22580, 139 22581, 183 139, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1337] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 1535, 48 1536, 20 1537, 36 1557, 95 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1064] | 0.28 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 33740, 144 33741, 234 33742, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i298] | 0.48 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 13590, 121 13591, 128 13592, 233 59734, 225 59990, 191 13593, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i403] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 47119, 41 47120, 140 47121, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1738] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 45628, 88 45629, 161 45630, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i218] | 0.49 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 24211, 125 24212, 215 24213, 151 38780, 37 39036, 242 24214, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1449] | 0.35 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 26140, 16 26141, 251 26142, 227 26137, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1168] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 58686, 240 58687, 198 58688, 89 58630, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i46] | 0.31 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 44080, 105 44081, 67 44082, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i675] | 0.48 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 14509, 57 14510, 81 14511, 61 15684, 193 15940, 81 14512, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i507] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 61677, 53 61678, 6 61679, 1 6, 74 234, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1623] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 17522, 24 17523, 1 17524, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i881] | 0.30 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 31182, 6 31183, 73 31184, 84 73, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1811] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 22893, 201 22894, 72 22895, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1338] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 44395, 48 44396, 173 44397, 53 44314, 185 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1537] | 0.20 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 53263, 80 53264, 169 53265, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i969] | 0.49 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 5751, 14 5752, 0 5753, 106 27136, 159 5754, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1065] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 41417, 144 41418, 180 41419, 3 41343, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1244] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 12914, 36 12915, 132 12916, 226 132, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i595] | 0.24 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 24866, 45 24867, 244 24868, 107 27636, 44 24869, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i404] | 0.22 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 54763, 41 54764, 203 54765, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1812] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 10656, 201 10657, 216 10658, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1169] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 26695, 240 26696, 98 26697, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1739] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 64064, 88 64065, 173 64066, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1538] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 41112, 80 41113, 172 41114, 114 41030, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i778] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 44902, 49 44903, 146 44904, 151 146, 190 147, 235 60212, 108 60468, 224 base: 146 lo: 190 hi: 235 deref_base: 60350 y_register: 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1624] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 40869, 24 40870, 28 40871, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i114] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 10328, 117 10329, 137 10330, 15 137, 2 82, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i47] | 0.25 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 65221, 105 65222, 152 65223, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i299] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 16896, 121 16897, 189 16898, 240 61637, 90 16899, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i882] | 0.32 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 49009, 6 49010, 249 49011, 172 249, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1339] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 50494, 48 50495, 125 50496, 183 50621, 74 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i596] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 64942, 45 64943, 57 64944, 243 62265, 141 64945, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i405] | 0.31 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 2523, 41 2524, 148 2525, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i219] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 60709, 125 60710, 167 60711, 13 3508, 212 60712, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1066] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 35032, 144 35033, 23 35034, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i508] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 27080, 53 27081, 253 27082, 183 253, 133 251, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i676] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 48389, 57 48390, 152 48391, 33 8537, 138 8793, 23 48392, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1740] | 0.30 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 38539, 88 38540, 77 38541, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1625] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 54279, 24 54280, 157 54281, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1245] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 61484, 36 61485, 116 61486, 195 116, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1813] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 38733, 201 38734, 223 38735, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i48] | 0.28 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 41933, 105 41934, 55 41935, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i970] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 21568, 14 21569, 12 21570, 122 31244, 131 21571, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1170] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 34922, 240 34923, 96 34924, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1539] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 53256, 80 53257, 15 53258, 144 53273, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i779] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 33167, 49 33168, 152 33169, 134 152, 225 153, 254 65027, 12 65283, 235 base: 152 lo: 225 hi: 254 deref_base: 65249 y_register: 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i115] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 63458, 117 63459, 21 63460, 252 21, 133 198, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i883] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 18949, 6 18950, 193 18951, 91 193, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1067] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 26019, 144 26020, 248 26021, 171 26013, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i300] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 24473, 97 24474, 144 24475, 211 144, 105 27, 231 28, 120 30951, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i406] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 19655, 41 19656, 105 19657, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1814] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 48448, 201 48449, 253 48450, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1340] | 0.20 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 51395, 48 51396, 188 51397, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i220] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 42162, 125 42163, 147 42164, 221 56770, 42 42165, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1741] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 48091, 88 48092, 166 48093, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1626] | 0.18 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 19750, 24 19751, 217 19752, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json-i49] | 0.20 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/69.json 6073, 105 6074, 73 6075, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1246] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 50363, 36 50364, 23 50365, 67 23, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i509] | 0.22 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 15056, 53 15057, 182 15058, 31 182, 110 83, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i677] | 0.34 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 49555, 57 49556, 142 49557, 13 3346, 100 3602, 166 49558, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i597] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 24103, 45 24104, 167 24105, 54 13991, 137 24106, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1171] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 13397, 240 13398, 234 13399, 194 13377, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1540] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 32525, 80 32526, 186 32527, 220 32713, 203 32457, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i407] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 12984, 41 12985, 79 12986, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i971] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 1119, 14 1120, 40 1121, 234 59944, 200 1122, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1341] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 43926, 48 43927, 75 43928, 134 44003, 164 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1742] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 51467, 88 51468, 100 51469, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1627] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 22690, 24 22691, 242 22692, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i116] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 15826, 117 15827, 238 15828, 77 238, 101 226, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1247] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 36963, 36 36964, 138 36965, 155 138, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1815] | 0.16 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 27403, 201 27404, 176 27405, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i50] | 0.31 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 54740, 101 54741, 65 54742, 243 65, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i510] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 49488, 53 49489, 235 49490, 194 235, 152 210, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1068] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 46138, 144 46139, 220 46140, 255 46104, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i780] | 0.52 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 418, 49 419, 69 420, 202 69, 194 70, 102 26367, 240 base: 69 lo: 194 hi: 102 deref_base: 26306 y_register: 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i884] | 0.24 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 28224, 6 28225, 121 28226, 161 121, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i301] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 57993, 97 57994, 81 57995, 254 81, 250 25, 108 26, 143 36716, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i221] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 26755, 125 26756, 150 26757, 145 37370, 168 26758, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1172] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 56764, 240 56765, 142 56766, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1541] | 0.29 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 56610, 80 56611, 6 56612, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i678] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 44404, 57 44405, 111 44406, 252 64659, 218 44407, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1816] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 57224, 201 57225, 189 57226, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i408] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 48116, 41 48117, 196 48118, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i598] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 32960, 45 32961, 23 32962, 167 42775, 186 32963, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1342] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 62319, 48 62320, 10 62321, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1628] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 4869, 24 4870, 209 4871, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1743] | 0.18 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 41589, 88 41590, 192 41591, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1248] | 0.29 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 32510, 36 32511, 245 32512, 17 245, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i972] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 8051, 14 8052, 105 8053, 50 12905, 206 8054, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i51] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 62644, 101 62645, 147 62646, 159 147, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1069] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 26998, 144 26999, 243 27000, 224 26987, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i885] | 0.32 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 63725, 6 63726, 247 63727, 109 247, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i117] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 28477, 117 28478, 237 28479, 204 237, 133 247, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1542] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 12745, 80 12746, 134 12747, 45 12625, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i409] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 52610, 41 52611, 101 52612, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1173] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 62809, 240 62810, 136 62811, 78 62947, 145 62691, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1744] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 54146, 88 54147, 97 54148, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i511] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 55802, 53 55803, 123 55804, 38 123, 51 223, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1629] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 5174, 24 5175, 62 5176, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1817] | 0.17 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 51012, 201 51013, 131 51014, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i222] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 3635, 125 3636, 169 3637, 10 2791, 160 3638, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1070] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 57020, 144 57021, 227 57022, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i118] | 0.50 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 37214, 117 37215, 145 37216, 110 145, 194 192, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1343] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 59313, 48 59314, 192 59315, 107 59251, 191 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i781] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 49859, 49 49860, 128 49861, 58 128, 212 129, 217 55648, 143 55904, 181 base: 128 lo: 212 hi: 217 deref_base: 55764 y_register: 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1249] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 60621, 36 60622, 195 60623, 13 195, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i679] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 47302, 57 47303, 150 47304, 118 30371, 4 47305, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i599] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 28235, 45 28236, 117 28237, 0 117, 155 28238, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i302] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 31868, 97 31869, 229 31870, 52 229, 98 182, 143 183, 252 64655, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i886] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 50923, 6 50924, 206 50925, 70 206, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1818] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 25282, 201 25283, 214 25284, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i52] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 28379, 101 28380, 177 28381, 130 177, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i973] | 0.53 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 44273, 14 44274, 28 44275, 77 19740, 152 44276, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1174] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 41952, 240 41953, 186 41954, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1543] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 7339, 80 7340, 26 7341, 79 7367, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1745] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 41553, 88 41554, 227 41555, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i410] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 22880, 41 22881, 56 22882, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1630] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 60371, 24 60372, 47 60373, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1071] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 25549, 144 25550, 55 25551, 183 25350, 175 25606, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i223] | 0.50 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 7287, 125 7288, 0 7289, 0 236, 174 7290, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1344] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 44708, 48 44709, 81 44710, 111 44791, 205 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i512] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 18604, 53 18605, 114 18606, 182 114, 25 58, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1250] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 62537, 44 62538, 154 62539, 156 40090, 196 62540, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1175] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 12374, 240 12375, 106 12376, 194 12482, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1544] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 15544, 80 15545, 158 15546, 35 15448, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i680] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 11259, 57 11260, 84 11261, 180 46165, 46 11262, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1746] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 17753, 88 17754, 134 17755, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i887] | 0.32 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 4629, 6 4630, 6 4631, 138 6, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1631] | 0.27 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 30359, 24 30360, 147 30361, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i782] | 0.54 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 64270, 49 64271, 136 64272, 255 136, 217 137, 49 12618, 177 12874, 238 base: 136 lo: 217 hi: 49 deref_base: 12761 y_register: 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1819] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 55706, 201 55707, 89 55708, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i411] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 19794, 41 19795, 174 19796, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i600] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 65080, 61 65081, 24 65082, 249 63767, 162 64023, 103 65083, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i303] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 48589, 97 48590, 109 48591, 48 109, 218 78, 250 79, 213 54778, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i53] | 0.33 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 34404, 101 34405, 53 34406, 248 53, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i119] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 58000, 117 58001, 52 58002, 197 52, 143 110, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1072] | 0.19 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 47537, 144 47538, 249 47539, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1345] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 27624, 48 27625, 129 27626, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1820] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 13779, 201 13780, 154 13781, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i974] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 26473, 14 26474, 186 26475, 187 48058, 111 26476, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i412] | 0.26 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 3762, 41 3763, 77 3764, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1545] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 41757, 80 41758, 212 41759, 198 41971, 174 41715, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1747] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 12047, 88 12048, 199 12049, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1632] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 27652, 24 27653, 245 27654, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1176] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 2730, 240 2731, 218 2732, 35 2694, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1251] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 37459, 44 37460, 90 37461, 86 22106, 223 37462, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i888] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 12867, 6 12868, 101 12869, 71 101, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1073] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 64079, 144 64080, 210 64081, 219 64035, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i224] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 51730, 125 51731, 166 51732, 132 34018, 224 51733, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i513] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 38921, 53 38922, 43 38923, 193 43, 102 166, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i681] | 0.50 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 61164, 57 61165, 59 61166, 180 46202, 144 61167, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i54] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 23311, 101 23312, 236 23313, 55 236, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i601] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 16838, 61 16839, 178 16840, 171 43981, 166 16841, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i120] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 43414, 117 43415, 109 43416, 114 109, 22 181, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1748] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 43292, 88 43293, 28 43294, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1633] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 39479, 24 39480, 21 39481, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1346] | 0.20 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 33470, 48 33471, 203 33472, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i413] | 0.21 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 12188, 41 12189, 70 12190, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1821] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 51830, 201 51831, 250 51832, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i783] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 31558, 49 31559, 235 31560, 58 235, 163 236, 233 59680, 43 59936, 81 base: 235 lo: 163 hi: 233 deref_base: 59811 y_register: 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i514] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 15904, 53 15905, 39 15906, 169 39, 50 238, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i304] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 40871, 97 40872, 201 40873, 48 201, 83 199, 176 200, 62 16048, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1546] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 62560, 80 62561, 67 62562, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i975] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 61977, 14 61978, 238 61979, 67 17390, 48 61980, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1252] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 64717, 44 64718, 85 64719, 30 7765, 189 64720, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1074] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 12893, 144 12894, 231 12895, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1177] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 53071, 240 53072, 9 53073, 20 53082, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i55] | 0.32 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 290, 101 291, 106 292, 118 106, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i121] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 26164, 117 26165, 229 26166, 223 229, 30 107, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1347] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 58658, 48 58659, 131 58660, 214 58791, 187 58535, 3 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1822] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 50394, 201 50395, 97 50396, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i414] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 14302, 41 14303, 116 14304, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i225] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 9612, 125 9613, 166 9614, 23 5913, 13 6169, 58 9615, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1634] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 59342, 24 59343, 67 59344, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i889] | 0.26 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 43757, 6 43758, 45 43759, 96 45, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json-i1749] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/58.json 26893, 88 26894, 23 26895, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i602] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 42718, 61 42719, 93 42720, 170 43587, 18 43843, 37 42721, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1547] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 41069, 80 41070, 226 41071, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i682] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 21895, 57 21896, 190 21897, 243 62298, 41 62554, 77 21898, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i784] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 5049, 49 5050, 152 5051, 227 152, 207 153, 84 21737, 254 base: 152 lo: 207 hi: 84 deref_base: 21711 y_register: 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1178] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 39305, 240 39306, 87 39307, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i305] | 0.49 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 38862, 97 38863, 133 38864, 10 133, 61 65, 100 66, 72 18532, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1348] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 25742, 48 25743, 125 25744, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1075] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 56349, 144 56350, 65 56351, 205 56416, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i56] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 1481, 101 1482, 72 1483, 250 72, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1635] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 47792, 24 47793, 198 47794, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1750] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 42118, 184 42119, 56 42120, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i515] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 41740, 53 41741, 14 41742, 197 14, 229 159, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i976] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 43531, 14 43532, 236 43533, 175 45036, 180 43534, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1253] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 58467, 44 58468, 188 58469, 181 46524, 227 58470, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1823] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 26749, 201 26750, 189 26751, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i415] | 0.17 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 48684, 41 48685, 64 48686, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i890] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 57496, 6 57497, 84 57498, 63 84, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i122] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 64228, 117 64229, 34 64230, 148 34, 38 168, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i226] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 26404, 125 26405, 92 26406, 233 59813, 252 26407, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1548] | 0.30 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 60241, 80 60242, 233 60243, 46 60220, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i603] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 40789, 61 40790, 105 40791, 228 58412, 225 58668, 13 40792, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i416] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 48672, 41 48673, 113 48674, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1824] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 147, 201 148, 178 149, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1179] | 0.29 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 48331, 240 48332, 241 48333, 55 48318, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i683] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 21734, 57 21735, 110 21736, 154 39592, 21 21737, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1349] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 59158, 48 59159, 220 59160, 123 59380, 168 59124, 55 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i785] | 0.50 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 11218, 49 11219, 160 11220, 142 160, 63 161, 0 188, 175 base: 160 lo: 63 hi: 0 deref_base: 63 y_register: 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1076] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 20922, 144 20923, 168 20924, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1636] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 42952, 24 42953, 64 42954, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i57] | 0.31 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 47007, 101 47008, 9 47009, 185 9, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1751] | 0.17 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 30768, 184 30769, 204 30770, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1254] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 565, 44 566, 68 567, 82 21060, 160 568, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i891] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 22682, 6 22683, 172 22684, 184 172, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i977] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 27846, 14 27847, 239 27848, 253 65007, 150 27849, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i516] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 3309, 53 3310, 52 3311, 132 52, 110 128, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i306] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 53458, 97 53459, 237 53460, 92 237, 254 55, 16 56, 18 4624, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1549] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 11792, 80 11793, 84 11794, 192 11878, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i123] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 47969, 117 47970, 178 47971, 74 178, 150 66, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1350] | 0.29 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 23233, 208 23234, 43 23235, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1752] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 49649, 184 49650, 224 49651, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i417] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 2143, 41 2144, 210 2145, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1637] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 43015, 24 43016, 146 43017, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1077] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 3967, 144 3968, 192 3969, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1180] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 65039, 240 65040, 8 65041, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1825] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 20598, 201 20599, 176 20600, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i227] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 20025, 125 20026, 38 20027, 116 29760, 48 20028, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i604] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 56654, 61 56655, 246 56656, 242 61965, 179 62221, 164 56657, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i58] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 65224, 101 65225, 82 65226, 69 82, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i684] | 0.34 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 12218, 57 12219, 232 12220, 140 35888, 211 36144, 110 12221, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1550] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 15082, 112 15083, 126 15084, 102 14954, 6 15210, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1255] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 4216, 44 4217, 220 4218, 94 24284, 60 4219, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1826] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 32709, 201 32710, 87 32711, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1181] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 36749, 240 36750, 249 36751, 184 36744, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i418] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 5127, 41 5128, 187 5129, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i892] | 0.31 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 36590, 6 36591, 66 36592, 52 66, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i517] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 2735, 53 2736, 6 2737, 31 6, 87 180, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i978] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 2820, 14 2821, 1 2822, 37 9473, 112 2823, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i786] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 16878, 49 16879, 148 16880, 48 148, 66 149, 67 17214, 158 17470, 204 base: 148 lo: 66 hi: 67 deref_base: 17218 y_register: 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1638] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 30593, 24 30594, 157 30595, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1351] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 45196, 208 45197, 216 45198, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1753] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 32814, 184 32815, 167 32816, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1078] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 31160, 144 31161, 235 31162, 86 31141, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i124] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 63091, 117 63092, 108 63093, 181 108, 223 217, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i307] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 31196, 97 31197, 52 31198, 11 52, 184 180, 31 181, 64 16415, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i605] | 0.51 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 26908, 61 26909, 217 26910, 91 23460, 199 23716, 218 26911, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i228] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 967, 125 968, 132 969, 222 56981, 225 970, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i685] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 4033, 57 4034, 210 4035, 51 13103, 133 13359, 113 4036, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i59] | 0.22 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 6145, 101 6146, 250 6147, 83 250, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1551] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 12337, 112 12338, 230 12339, 163 12313, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1639] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 35885, 24 35886, 183 35887, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1827] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 23763, 201 23764, 134 23765, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1754] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 41724, 184 41725, 50 41726, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i419] | 0.18 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 62820, 41 62821, 186 62822, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1182] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 43986, 240 43987, 122 43988, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1256] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 36841, 44 36842, 171 36843, 82 21163, 172 36844, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i893] | 0.47 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 37363, 6 37364, 27 37365, 31 27, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1352] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 31477, 208 31478, 48 31479, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i125] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 46962, 117 46963, 157 46964, 162 157, 101 104, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i979] | 0.53 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 43637, 14 43638, 34 43639, 51 13090, 91 43640, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i518] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 33860, 53 33861, 178 33862, 2 178, 196 210, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i787] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 59083, 49 59084, 133 59085, 121 133, 186 134, 149 38155, 49 38411, 25 base: 133 lo: 186 hi: 149 deref_base: 38330 y_register: 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1079] | 0.18 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 40991, 144 40992, 142 40993, 46 41135, 9 40879, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i60] | 0.30 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 34518, 101 34519, 245 34520, 36 245, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i420] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 46720, 41 46721, 26 46722, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1828] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 5453, 201 5454, 111 5455, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i229] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 199, 125 200, 95 201, 129 33103, 165 33359, 124 202, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1640] | 0.18 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 21801, 24 21802, 138 21803, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1552] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 22193, 112 22194, 70 22195, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1755] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 31067, 184 31068, 169 31069, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1183] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 51561, 240 51562, 141 51563, 192 51704, 93 51448, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1080] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 11092, 144 11093, 81 11094, 211 11175, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i686] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 7123, 57 7124, 244 7125, 175 44900, 4 45156, 237 7126, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i519] | 0.51 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 38659, 53 38660, 24 38661, 107 24, 6 23, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i308] | 0.50 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 61247, 97 61248, 160 61249, 96 160, 85 15, 222 16, 74 19166, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1353] | 0.19 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 54820, 208 54821, 219 54822, 112 54785, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i606] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 63659, 61 63660, 215 63661, 229 58874, 114 63662, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1641] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 18871, 24 18872, 76 18873, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i61] | 0.34 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 26414, 101 26415, 158 26416, 98 158, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1257] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 46981, 44 46982, 1 46983, 61 15617, 55 46984, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1829] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 59407, 201 59408, 86 59409, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i894] | 0.24 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 6799, 6 6800, 48 6801, 140 48, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1553] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 46870, 112 46871, 199 46872, 217 47071, 32 46815, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i421] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 3370, 41 3371, 252 3372, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i126] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 7377, 117 7378, 80 7379, 60 80, 236 114, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1756] | 0.31 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 34931, 184 34932, 171 34933, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1354] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 25998, 208 25999, 135 26000, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i230] | 0.51 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 47799, 125 47800, 146 47801, 230 59064, 110 47802, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i980] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 33917, 14 33918, 134 33919, 211 54150, 25 33920, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i788] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 44786, 49 44787, 14 44788, 254 14, 123 15, 103 26488, 239 26744, 252 base: 14 lo: 123 hi: 103 deref_base: 26491 y_register: 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1184] | 0.20 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 19805, 240 19806, 238 19807, 147 19789, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1081] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 6758, 144 6759, 251 6760, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i422] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 43515, 41 43516, 95 43517, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1830] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 54170, 201 54171, 207 54172, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i687] | 0.32 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 32165, 57 32166, 254 32167, 179 45997, 222 46253, 185 32168, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i895] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 32763, 6 32764, 184 32765, 76 184, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1642] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 51283, 24 51284, 253 51285, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i607] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 7997, 61 7998, 156 7999, 56 14472, 63 14728, 73 8000, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i62] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 29305, 101 29306, 119 29307, 252 119, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1757] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 38304, 184 38305, 134 38306, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1554] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 34548, 112 34549, 77 34550, 83 34371, 24 34627, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1185] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 39475, 240 39476, 55 39477, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1258] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 18992, 44 18993, 215 18994, 137 35287, 19 18995, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i309] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 59077, 97 59078, 247 59079, 104 247, 140 142, 106 143, 100 25706, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i520] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 9521, 53 9522, 210 9523, 120 210, 3 188, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i127] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 62988, 117 62989, 120 62990, 208 120, 132 253, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1355] | 0.30 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 5070, 208 5071, 9 5072, 165 5081, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1643] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 38103, 24 38104, 201 38105, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i423] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 36928, 41 36929, 7 36930, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1082] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 38425, 144 38426, 155 38427, 178 38582, 129 38326, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i981] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 9328, 14 9329, 23 9330, 82 21015, 40 9331, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i789] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 42372, 49 42373, 192 42374, 246 192, 125 193, 30 7696, 219 7952, 87 base: 192 lo: 125 hi: 30 deref_base: 7805 y_register: 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1831] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 40318, 201 40319, 200 40320, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1758] | 0.29 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 29766, 184 29767, 26 29768, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i688] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 59712, 57 59713, 56 59714, 82 21173, 31 59715, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i896] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 35475, 6 35476, 187 35477, 142 187, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1259] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 11426, 44 11427, 244 11428, 140 36084, 134 11429, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i231] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 27973, 125 27974, 52 27975, 107 27622, 245 27976, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1555] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 33073, 112 33074, 225 33075, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i608] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 62674, 61 62675, 200 62676, 224 57573, 224 62677, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i424] | 0.26 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 53601, 41 53602, 186 53603, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i63] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 5268, 101 5269, 145 5270, 90 145, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1186] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 13136, 240 13137, 148 13138, 213 13286, 208 13030, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1083] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 40139, 144 40140, 236 40141, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1356] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 58427, 208 58428, 217 58429, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i521] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 24184, 53 24185, 41 24186, 25 41, 64 132, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1832] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 31395, 201 31396, 46 31397, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i310] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 19832, 97 19833, 185 19834, 114 185, 171 210, 194 211, 38 9922, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i128] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 6389, 117 6390, 171 6391, 173 171, 139 168, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1644] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 27502, 24 27503, 156 27504, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1759] | 0.17 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 51131, 184 51132, 34 51133, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i982] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 13468, 14 13469, 215 13470, 10 2775, 230 13471, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1556] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 57730, 112 57731, 73 57732, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i897] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 52102, 6 52103, 129 52104, 32 129, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i425] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 50167, 41 50168, 169 50169, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1357] | 0.30 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 7568, 208 7569, 200 7570, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i522] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 17603, 53 17604, 111 17605, 65 111, 210 159, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i232] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 56327, 125 56328, 138 56329, 27 6930, 241 7186, 198 56330, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1760] | 0.30 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 61581, 184 61582, 180 61583, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1645] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 33638, 24 33639, 81 33640, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1187] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 24337, 240 24338, 156 24339, 139 24495, 43 24239, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1084] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 25090, 144 25091, 114 25092, 249 25206, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1260] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 32717, 44 32718, 94 32719, 68 17502, 179 32720, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i64] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 45030, 101 45031, 244 45032, 194 244, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i689] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 16956, 57 16957, 69 16958, 200 51221, 114 51477, 191 16959, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i609] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 21644, 61 21645, 135 21646, 38 9751, 156 10007, 74 21647, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1833] | 0.16 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 40974, 201 40975, 190 40976, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i790] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 27750, 49 27751, 132 27752, 10 132, 153 133, 161 41268, 175 41524, 160 base: 132 lo: 153 hi: 161 deref_base: 41369 y_register: 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i129] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 34576, 117 34577, 146 34578, 144 146, 188 101, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i426] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 4822, 41 4823, 6 4824, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i311] | 0.58 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 18128, 97 18129, 155 18130, 169 155, 148 90, 83 91, 254 65107, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1358] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 36537, 208 36538, 200 36539, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1834] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 55144, 201 55145, 180 55146, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1188] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 45603, 240 45604, 160 45605, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1557] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 47428, 112 47429, 207 47430, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i983] | 0.50 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 43699, 14 43700, 172 43701, 27 7084, 181 43702, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i65] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 12540, 101 12541, 38 12542, 232 38, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1646] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 51577, 24 51578, 201 51579, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1761] | 0.18 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 21939, 184 21940, 218 21941, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i233] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 219, 125 220, 91 221, 58 14916, 43 15172, 91 222, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1085] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 42142, 144 42143, 25 42144, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i130] | 0.48 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 25287, 117 25288, 203 25289, 15 203, 125 186, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i523] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 43904, 53 43905, 133 43906, 92 133, 102 205, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i898] | 0.29 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 22876, 6 22877, 63 22878, 13 63, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1261] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 3733, 44 3734, 83 3735, 127 32595, 140 3736, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i610] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 47576, 61 47577, 5 47578, 39 10199, 214 47579, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i427] | 0.22 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 2921, 41 2922, 35 2923, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i690] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 16991, 57 16992, 232 16993, 59 15273, 181 15529, 239 16994, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i791] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 60720, 49 60721, 32 60722, 242 32, 49 33, 87 22444, 200 base: 32 lo: 49 hi: 87 deref_base: 22321 y_register: 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1647] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 54269, 24 54270, 226 54271, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1762] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 55002, 184 55003, 107 55004, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1835] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 5377, 201 5378, 50 5379, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1359] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 26701, 208 26702, 93 26703, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1086] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 17466, 144 17467, 29 17468, 54 17497, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1189] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 10901, 240 10902, 59 10903, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1558] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 48462, 112 48463, 53 48464, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i66] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 40568, 101 40569, 220 40570, 149 220, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i428] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 64700, 41 64701, 196 64702, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json-i899] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/06.json 57706, 6 57707, 77 57708, 233 77, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1836] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 33064, 201 33065, 248 33066, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i234] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 3568, 125 3569, 179 3570, 21 5376, 92 5632, 181 3571, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i524] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 61154, 53 61155, 114 61156, 167 114, 12 176, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i984] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 64556, 14 64557, 205 64558, 153 39373, 234 64559, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1360] | 0.30 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 60237, 208 60238, 226 60239, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i312] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 13880, 97 13881, 149 13882, 247 149, 237 145, 130 146, 187 48002, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i611] | 0.52 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 10407, 61 10408, 220 10409, 169 43279, 76 43535, 209 10410, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1648] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 15849, 24 15850, 126 15851, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1559] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 11289, 112 11290, 41 11291, 163 11332, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1262] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 59000, 44 59001, 238 59002, 17 4590, 49 59003, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i131] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 3138, 117 3139, 15 3140, 230 15, 237 34, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i691] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 46132, 57 46133, 7 46134, 195 49959, 236 46135, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1763] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 53777, 184 53778, 83 53779, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1087] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 60793, 144 60794, 32 60795, 209 60827, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1190] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 23408, 240 23409, 134 23410, 119 23544, 91 23288, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i429] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 60971, 41 60972, 91 60973, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i792] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 21636, 49 21637, 202 21638, 164 202, 32 203, 30 7751, 252 base: 202 lo: 32 hi: 30 deref_base: 7712 y_register: 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json-i1649] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/18.json 78, 24 79, 235 80, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i67] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 19971, 101 19972, 107 19973, 235 107, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i900] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 29598, 22 29599, 143 29600, 162 143, 131 47, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1837] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 6722, 201 6723, 118 6724, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1764] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 1550, 184 1551, 47 1552, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1361] | 0.29 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 22220, 208 22221, 65 22222, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i235] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 2103, 125 2104, 184 2105, 204 52245, 52 52501, 246 2106, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1191] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 29810, 240 29811, 174 29812, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1560] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 53819, 112 53820, 217 53821, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i430] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 7567, 41 7568, 38 7569, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i525] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 47677, 53 47678, 248 47679, 202 248, 189 200, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i985] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 54266, 14 54267, 130 54268, 60 15490, 180 54269, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i692] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 29372, 57 29373, 11 29374, 238 60935, 146 61191, 161 29375, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i132] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 21207, 117 21208, 32 21209, 235 32, 237 10, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i313] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 44500, 97 44501, 100 44502, 210 100, 48 103, 5 104, 121 30981, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1838] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 31176, 201 31177, 70 31178, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1263] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 1471, 44 1472, 73 1473, 85 21833, 245 1474, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1088] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 23263, 144 23264, 124 23265, 129 23133, 124 23389, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i612] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 14708, 61 14709, 99 14710, 250 64209, 202 14711, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1650] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 9012, 216 9013, 69 9014, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1362] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 28354, 208 28355, 67 28356, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i793] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 44085, 49 44086, 128 44087, 129 128, 36 129, 73 18746, 244 base: 128 lo: 36 hi: 73 deref_base: 18724 y_register: 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i526] | 0.49 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 13999, 53 14000, 0 14001, 242 0, 66 65, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1765] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 51162, 184 51163, 28 51164, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i431] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 1280, 41 1281, 245 1282, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i68] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 32347, 101 32348, 162 32349, 247 162, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1192] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 61420, 240 61421, 209 61422, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1561] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 15830, 112 15831, 58 15832, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i901] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 30195, 22 30196, 238 30197, 112 238, 27 90, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i133] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 56575, 117 56576, 192 56577, 44 192, 82 145, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i236] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 31751, 125 31752, 44 31753, 175 44940, 106 31754, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1264] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 43422, 44 43423, 72 43424, 221 56648, 147 43425, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1651] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 17257, 216 17258, 223 17259, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1839] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 62394, 201 62395, 102 62396, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i693] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 23436, 57 23437, 102 23438, 250 64038, 184 64294, 170 23439, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1363] | 0.27 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 54711, 208 54712, 203 54713, 14 54660, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i986] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 22613, 14 22614, 218 22615, 224 57562, 215 22616, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1766] | 0.34 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 9664, 184 9665, 188 9666, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i432] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 962, 41 963, 112 964, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i69] | 0.30 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 57071, 101 57072, 46 57073, 33 46, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1089] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 62593, 144 62594, 189 62595, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1562] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 4662, 112 4663, 119 4664, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i613] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 33274, 61 33275, 131 33276, 238 60963, 95 61219, 211 33277, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i314] | 0.44 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 36509, 97 36510, 200 36511, 45 200, 21 45, 35 46, 228 58403, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1193] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 23301, 240 23302, 62 23303, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1840] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 13154, 201 13155, 123 13156, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i794] | 0.49 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 34886, 49 34887, 128 34888, 184 128, 195 129, 227 58319, 156 base: 128 lo: 195 hi: 227 deref_base: 58307 y_register: 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1364] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 40958, 208 40959, 168 40960, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1652] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 60103, 216 60104, 1 60105, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i527] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 5264, 53 5265, 130 5266, 125 130, 187 180, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1090] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 7035, 144 7036, 8 7037, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i902] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 22334, 22 22335, 248 22336, 240 248, 166 216, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i134] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 39717, 117 39718, 156 39719, 154 156, 26 169, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1767] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 64410, 184 64411, 147 64412, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i433] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 27426, 41 27427, 199 27428, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i987] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 41693, 14 41694, 208 41695, 42 10960, 151 41696, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i70] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 4620, 101 4621, 231 4622, 179 231, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1265] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 413, 44 414, 242 415, 170 43762, 245 416, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i694] | 0.47 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 6010, 57 6011, 46 6012, 233 59806, 3 6013, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1194] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 43203, 240 43204, 213 43205, 26 43162, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i237] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 54734, 125 54735, 31 54736, 44 11464, 135 54737, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1563] | 0.29 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 2325, 112 2326, 254 2327, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1653] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 51621, 216 51622, 180 51623, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i614] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 55556, 61 55557, 132 55558, 7 1903, 238 2159, 96 55559, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1841] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 10675, 201 10676, 107 10677, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1768] | 0.31 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 3653, 184 3654, 153 3655, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i434] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 37344, 41 37345, 120 37346, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1365] | 0.18 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 36053, 208 36054, 89 36055, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1091] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 36995, 144 36996, 25 36997, 29 37022, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i315] | 0.54 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 7894, 97 7895, 14 7896, 137 14, 155 4, 48 5, 14 3632, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i903] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 31706, 22 31707, 41 31708, 184 41, 68 65, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i528] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 54411, 53 54412, 72 54413, 224 72, 241 106, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i795] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 32415, 49 32416, 255 32417, 11 255, 140 0, 96 24818, 181 base: 255 lo: 140 hi: 96 deref_base: 24716 y_register: 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1195] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 7242, 240 7243, 74 7244, 44 7318, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1564] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 3856, 112 3857, 183 3858, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i988] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 44093, 14 44094, 91 44095, 220 56411, 226 44096, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1842] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 20906, 201 20907, 20 20908, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i71] | 0.30 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 9105, 101 9106, 109 9107, 81 109, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i135] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 19044, 117 19045, 171 19046, 40 171, 170 88, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1266] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 48686, 44 48687, 44 48688, 229 58668, 170 48689, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i238] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 16036, 125 16037, 71 16038, 66 17017, 124 16039, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1654] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 52473, 216 52474, 202 52475, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1366] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 35347, 208 35348, 37 35349, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1769] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 26735, 184 26736, 19 26737, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i435] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 33487, 41 33488, 196 33489, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i695] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 10624, 57 10625, 229 10626, 150 38590, 60 38846, 179 10627, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i615] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 2597, 61 2598, 249 2599, 224 57466, 179 57722, 244 2600, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1565] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 18342, 112 18343, 154 18344, 182 18242, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1092] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 60780, 144 60781, 213 60782, 56 60739, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1267] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 54843, 44 54844, 83 54845, 182 46675, 158 54846, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1655] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 54766, 216 54767, 183 54768, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i529] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 39160, 53 39161, 37 39162, 47 37, 56 229, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i72] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 15262, 101 15263, 203 15264, 100 203, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1770] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 34363, 184 34364, 54 34365, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i436] | 0.31 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 40950, 41 40951, 81 40952, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i904] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 41686, 22 41687, 62 41688, 58 62, 194 206, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1843] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 22008, 201 22009, 163 22010, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i136] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 17579, 117 17580, 249 17581, 15 249, 223 238, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1196] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 64549, 240 64550, 228 64551, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i989] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 34000, 14 34001, 50 34002, 163 41778, 99 34003, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1367] | 0.29 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 20620, 208 20621, 194 20622, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i796] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 12304, 49 12305, 46 12306, 232 46, 83 47, 115 29626, 253 base: 46 lo: 83 hi: 115 deref_base: 29523 y_register: 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i239] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 33145, 125 33146, 77 33147, 93 23989, 195 33148, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i316] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 12136, 97 12137, 81 12138, 231 81, 230 220, 77 221, 47 12109, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1093] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 645, 144 646, 198 647, 192 589, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i696] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 21035, 57 21036, 6 21037, 13 3512, 222 21038, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i616] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 10950, 61 10951, 49 10952, 149 38176, 202 38432, 121 10953, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1566] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 56784, 112 56785, 232 56786, 59 56762, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1844] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 27953, 201 27954, 54 27955, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1656] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 44922, 216 44923, 117 44924, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i137] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 48757, 117 48758, 158 48759, 200 158, 174 48, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i437] | 0.23 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 45353, 41 45354, 185 45355, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1771] | 0.22 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 62478, 184 62479, 70 62480, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1368] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 19472, 208 19473, 121 19474, 98 19595, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i73] | 0.20 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 32962, 101 32963, 203 32964, 40 203, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i530] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 34281, 53 34282, 228 34283, 99 228, 194 165, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1197] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 16670, 240 16671, 205 16672, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1268] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 49536, 44 49537, 146 49538, 141 36242, 13 49539, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i905] | 0.54 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 48105, 22 48106, 101 48107, 153 101, 56 24, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1094] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 153, 144 154, 246 155, 104 145, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i797] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 29600, 49 29601, 92 29602, 65 92, 141 93, 179 46058, 109 base: 92 lo: 141 hi: 179 deref_base: 45965 y_register: 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1657] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 52638, 216 52639, 95 52640, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i317] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 36474, 97 36475, 168 36476, 48 168, 196 133, 165 134, 122 31397, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i240] | 0.33 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 60109, 125 60110, 53 60111, 234 60132, 251 60112, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1845] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 34249, 201 34250, 63 34251, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i990] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 23080, 14 23081, 146 23082, 203 52114, 80 23083, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1567] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 39754, 112 39755, 98 39756, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1772] | 0.31 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 23581, 184 23582, 92 23583, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i74] | 0.33 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 47923, 101 47924, 102 47925, 157 102, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i438] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 43865, 41 43866, 28 43867, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1198] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 40727, 240 40728, 142 40729, 79 40871, 155 40615, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i697] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 32873, 57 32874, 171 32875, 160 40969, 161 41225, 76 32876, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i617] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 36254, 61 36255, 32 36256, 175 44802, 114 45058, 56 36257, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i531] | 0.52 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 27697, 53 27698, 101 27699, 213 101, 212 87, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1369] | 0.22 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 17255, 208 17256, 158 17257, 103 17159, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1846] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 13216, 201 13217, 172 13218, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i138] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 57373, 117 57374, 122 57375, 15 122, 218 118, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1269] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 12660, 44 12661, 131 12662, 177 45443, 228 12663, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1095] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 18200, 144 18201, 233 18202, 200 18179, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1658] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 21036, 216 21037, 75 21038, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i241] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 35600, 125 35601, 24 35602, 245 62961, 236 35603, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i439] | 0.21 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 46092, 41 46093, 73 46094, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1568] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 20893, 112 20894, 157 20895, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1773] | 0.18 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 4218, 184 4219, 19 4220, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i75] | 0.30 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 16415, 101 16416, 25 16417, 107 25, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1370] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 25205, 208 25206, 167 25207, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json-i1199] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f0.json 29190, 240 29191, 3 29192, 184 29195, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i906] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 1861, 22 1862, 199 1863, 27 199, 138 12, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i991] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 49423, 14 49424, 254 49425, 183 47102, 159 49426, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i618] | 0.49 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 44414, 61 44415, 125 44416, 147 37872, 36 44417, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i698] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 13838, 57 13839, 209 13840, 104 26740, 249 26996, 63 13841, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i798] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 38292, 49 38293, 187 38294, 103 187, 252 188, 10 2661, 201 2917, 84 base: 187 lo: 252 hi: 10 deref_base: 2812 y_register: 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i318] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 6279, 97 6280, 236 6281, 150 236, 148 166, 247 167, 72 18679, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1847] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 27066, 201 27067, 57 27068, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1096] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 15305, 144 15306, 111 15307, 195 15162, 204 15418, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1659] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 36780, 216 36781, 107 36782, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1569] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 47428, 112 47429, 243 47430, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i440] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 27208, 41 27209, 137 27210, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1774] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 27539, 184 27540, 71 27541, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1270] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 45664, 44 45665, 193 45666, 176 45249, 193 45667, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i139] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 25636, 117 25637, 160 25638, 160 160, 172 208, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i532] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 678, 53 679, 60 680, 132 60, 98 124, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i242] | 0.51 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 20248, 125 20249, 126 20250, 147 37639, 76 37895, 88 20251, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i76] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 34088, 101 34089, 25 34090, 127 25, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1371] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 34357, 208 34358, 101 34359, 112 34460, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1848] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 57674, 201 57675, 15 57676, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i907] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 48692, 22 48693, 24 48694, 130 24, 68 114, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1200] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 35255, 36 35256, 114 35257, 15 114, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1660] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 2230, 216 2231, 0 2232, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1097] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 62820, 144 62821, 63 62822, 144 62885, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i699] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 59628, 57 59629, 11 59630, 196 50308, 26 59631, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i992] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 61489, 14 61490, 80 61491, 98 25168, 37 61492, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1271] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 37196, 44 37197, 252 37198, 191 49148, 101 37199, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i441] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 4222, 41 4223, 235 4224, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i799] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 7336, 49 7337, 157 7338, 45 157, 217 158, 220 56499, 0 56755, 114 base: 157 lo: 217 hi: 220 deref_base: 56537 y_register: 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1570] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 36543, 112 36544, 115 36545, 186 36404, 90 36660, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1775] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 25832, 184 25833, 244 25834, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i619] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 30569, 61 30570, 227 30571, 28 7315, 41 7571, 187 30572, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i533] | 0.30 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 53869, 53 53870, 161 53871, 236 161, 244 162, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1661] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 17428, 216 17429, 147 17430, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i319] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 6947, 97 6948, 70 6949, 32 70, 96 255, 149 0, 72 18581, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1201] | 0.27 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 44641, 36 44642, 59 44643, 107 59, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i140] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 15763, 117 15764, 58 15765, 183 58, 167 184, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i442] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 40562, 41 40563, 74 40564, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json-i1849] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c9.json 32612, 201 32613, 86 32614, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i77] | 0.33 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 63711, 101 63712, 39 63713, 222 39, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1372] | 0.20 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 14672, 208 14673, 244 14674, 169 14662, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1776] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 3783, 184 3784, 17 3785, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1098] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 23621, 144 23622, 90 23623, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i908] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 35490, 22 35491, 244 35492, 194 244, 201 117, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i243] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 62055, 125 62056, 141 62057, 146 37605, 250 62058, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i700] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 62965, 33 62966, 181 62967, 178 181, 28 6, 43 7, 252 64555, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1571] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 44809, 112 44810, 216 44811, 5 45027, 178 44771, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i993] | 0.52 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 39425, 14 39426, 228 39427, 11 3044, 31 39428, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1850] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 16627, 197 16628, 80 16629, 165 80, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1272] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 52302, 44 52303, 171 52304, 175 44971, 85 52305, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1202] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 40605, 36 40606, 195 40607, 105 195, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i534] | 0.50 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 58516, 53 58517, 31 58518, 88 31, 209 167, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1373] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 29670, 208 29671, 228 29672, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1662] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 21789, 216 21790, 74 21791, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json-i1099] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/90.json 3091, 144 3092, 1 3093, 206 3094, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i620] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 27622, 61 27623, 113 27624, 221 56815, 31 27625, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i78] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 24891, 101 24892, 137 24893, 172 137, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i443] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 33262, 41 33263, 144 33264, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i141] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 47460, 117 47461, 189 47462, 224 189, 197 241, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i800] | 0.22 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 23657, 10 23658, 10 23659, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1572] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 42525, 112 42526, 170 42527, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i320] | 0.50 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 10463, 97 10464, 146 10465, 166 146, 64 138, 110 139, 185 47470, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1777] | 0.20 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 17943, 184 17944, 190 17945, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i909] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 60382, 22 60383, 177 60384, 164 177, 133 136, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1663] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 39806, 216 39807, 165 39808, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1851] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 11448, 197 11449, 199 11450, 212 199, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i444] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 54820, 41 54821, 142 54822, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1374] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 37187, 208 37188, 13 37189, 15 37202, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i244] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 12174, 125 12175, 132 12176, 24 6210, 55 6466, 213 12177, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i79] | 0.33 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 62148, 101 62149, 251 62150, 63 251, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1203] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 61215, 36 61216, 41 61217, 38 41, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i142] | 0.48 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 45397, 117 45398, 98 45399, 238 98, 51 24, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1273] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 59154, 44 59155, 131 59156, 248 63619, 159 59157, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1778] | 0.29 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 19659, 184 19660, 85 19661, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i801] | 0.21 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 35162, 10 35163, 124 35164, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1100] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 16337, 176 16338, 218 16339, 205 16301, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i621] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 54335, 61 54336, 28 54337, 189 48579, 112 54338, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i994] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 2547, 14 2548, 93 2549, 156 40029, 16 2550, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i701] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 51300, 33 51301, 185 51302, 247 185, 156 181, 1 182, 248 63489, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1573] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 63798, 112 63799, 160 63800, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i535] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 25744, 53 25745, 110 25746, 229 110, 155 191, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1664] | 0.18 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 32086, 216 32087, 33 32088, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i802] | 0.28 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 37521, 10 37522, 47 37523, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i445] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 30649, 41 30650, 253 30651, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1852] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 30030, 197 30031, 5 30032, 29 5, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i80] | 0.34 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 5995, 101 5996, 45 5997, 118 45, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1204] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 49943, 36 49944, 26 49945, 20 26, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i321] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 56768, 97 56769, 45 56770, 93 45, 231 24, 44 25, 175 44844, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1375] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 44881, 208 44882, 57 44883, 98 44940, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i910] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 55764, 22 55765, 144 55766, 240 144, 109 42, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1779] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 35838, 184 35839, 11 35840, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i245] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 61977, 125 61978, 64 61979, 50 12812, 155 13068, 72 61980, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1665] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 12644, 216 12645, 216 12646, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1274] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 40079, 44 40080, 246 40081, 124 31990, 86 40082, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1101] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 9943, 176 9944, 128 9945, 42 9817, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1574] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 21035, 112 21036, 69 21037, 105 21106, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i446] | 0.32 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 13305, 41 13306, 0 13307, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i143] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 58802, 117 58803, 62 58804, 178 62, 105 115, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i622] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 52031, 61 52032, 149 52033, 117 30050, 109 30306, 105 52034, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i536] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 6100, 53 6101, 239 6102, 65 239, 169 148, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i995] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 14701, 14 14702, 27 14703, 212 54299, 124 14704, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1780] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 42112, 184 42113, 125 42114, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i803] | 0.19 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 4808, 10 4809, 187 4810, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1376] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 35800, 208 35801, 67 35802, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1666] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 8295, 216 8296, 178 8297, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i702] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 33377, 33 33378, 233 33379, 13 233, 4 112, 198 113, 84 21702, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1853] | 0.27 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 9602, 197 9603, 25 9604, 40 25, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1205] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 57562, 36 57563, 133 57564, 209 133, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i81] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 12788, 101 12789, 197 12790, 210 197, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1575] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 23696, 112 23697, 73 23698, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i911] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 27146, 22 27147, 236 27148, 115 236, 237 116, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i804] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 50542, 10 50543, 180 50544, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i246] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 37449, 125 37450, 22 37451, 38 9849, 141 37452, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1102] | 0.19 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 20980, 176 20981, 220 20982, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i322] | 0.58 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 49589, 97 49590, 66 49591, 190 66, 107 210, 98 211, 15 3938, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1275] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 55878, 44 55879, 46 55880, 121 31022, 112 55881, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i447] | 0.19 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 26501, 41 26502, 81 26503, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i623] | 0.47 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 13408, 61 13409, 111 13410, 154 39509, 240 39765, 131 13411, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1781] | 0.22 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 51292, 184 51293, 230 51294, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1206] | 0.30 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 21783, 36 21784, 128 21785, 154 128, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i144] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 46384, 117 46385, 240 46386, 188 240, 232 239, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i537] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 18739, 53 18740, 243 18741, 223 243, 24 52, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i996] | 0.34 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 2602, 14 2603, 120 2604, 12 3192, 103 2605, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1377] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 44503, 208 44504, 30 44505, 12 44535, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1667] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 12291, 216 12292, 90 12293, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1854] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 46347, 197 46348, 8 46349, 122 8, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1103] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 55512, 176 55513, 171 55514, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1576] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 12570, 112 12571, 223 12572, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i448] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 20326, 41 20327, 105 20328, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i82] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 42902, 101 42903, 169 42904, 244 169, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1276] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 22447, 44 22448, 111 22449, 45 11631, 200 22450, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i805] | 0.21 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 54157, 10 54158, 68 54159, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i703] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 949, 33 950, 7 951, 57 7, 85 107, 127 108, 114 29311, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1782] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 17696, 184 17697, 104 17698, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i912] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 29911, 22 29912, 181 29913, 143 181, 79 2, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i145] | 0.52 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 26832, 117 26833, 71 26834, 218 71, 248 203, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i538] | 0.48 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 35700, 53 35701, 40 35702, 18 40, 199 233, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1668] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 56846, 216 56847, 119 56848, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i247] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 65313, 125 65314, 253 65315, 57 14818, 119 15074, 28 65316, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1207] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 62177, 36 62178, 248 62179, 149 248, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1855] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 49057, 197 49058, 168 49059, 8 168, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i997] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 25353, 14 25354, 72 25355, 179 45896, 211 25356, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1378] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 21228, 208 21229, 156 21230, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i624] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 38603, 61 38604, 181 38605, 7 1992, 35 38606, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json-i449] | 0.20 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/29.json 6033, 41 6034, 144 6035, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i806] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 19359, 10 19360, 8 19361, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1104] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 61628, 176 61629, 136 61630, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i323] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 22234, 97 22235, 79 22236, 30 79, 118 178, 74 179, 222 56906, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1577] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 62092, 112 62093, 101 62094, 212 62195, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i83] | 0.20 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 44458, 101 44459, 148 44460, 134 148, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1783] | 0.22 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 17966, 184 17967, 0 17968, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1669] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 54227, 216 54228, 181 54229, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1379] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 30481, 208 30482, 198 30483, 93 30681, 93 30425, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i450] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 16485, 37 16486, 134 16487, 161 134, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1277] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 43628, 44 43629, 233 43630, 199 51177, 234 43631, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i913] | 0.47 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 18965, 22 18966, 66 18967, 52 66, 169 230, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1208] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 15693, 36 15694, 232 15695, 93 232, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1578] | 0.29 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 17502, 112 17503, 10 17504, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i248] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 62626, 125 62627, 245 62628, 195 50105, 83 50361, 244 62629, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i84] | 0.30 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 6914, 101 6915, 189 6916, 178 189, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1856] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 27258, 197 27259, 216 27260, 84 216, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i539] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 19858, 53 19859, 24 19860, 152 24, 36 160, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i807] | 0.19 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 36030, 10 36031, 221 36032, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i704] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 47005, 33 47006, 115 47007, 247 115, 44 249, 215 250, 22 5847, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i146] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 47013, 117 47014, 195 47015, 77 195, 56 32, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1105] | 0.18 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 32036, 176 32037, 172 32038, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1784] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 56912, 184 56913, 75 56914, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1670] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 27716, 216 27717, 187 27718, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i998] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 60724, 14 60725, 199 60726, 220 56519, 56 60727, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i625] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 39045, 61 39046, 24 39047, 49 12566, 221 12822, 232 39048, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i324] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 12555, 97 12556, 112 12557, 73 112, 215 8, 221 9, 39 10205, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i451] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 43083, 37 43084, 248 43085, 128 248, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i808] | 0.32 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 58610, 10 58611, 201 58612, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1106] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 47823, 176 47824, 248 47825, 41 47817, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1380] | 0.30 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 42606, 208 42607, 214 42608, 146 42566, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1579] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 11607, 112 11608, 160 11609, 107 11769, 230 11513, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i85] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 36781, 101 36782, 29 36783, 45 29, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1278] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 34627, 44 34628, 65 34629, 18 4673, 69 34630, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1209] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 19916, 36 19917, 13 19918, 148 13, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1857] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 3938, 197 3939, 115 3940, 87 115, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json-i249] | 0.49 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/7d.json 41832, 125 41833, 221 41834, 52 13477, 187 13733, 249 41835, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i147] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 55847, 117 55848, 45 55849, 148 45, 173 53, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1671] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 44698, 216 44699, 15 44700, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i540] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 21236, 53 21237, 83 21238, 39 83, 249 208, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i914] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 16526, 22 16527, 129 16528, 156 129, 210 37, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json-i1785] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b8.json 8577, 184 8578, 207 8579, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json-i999] | 0.51 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0e.json 58512, 14 58513, 218 58514, 189 48602, 185 58515, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i705] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 63037, 33 63038, 106 63039, 140 106, 48 13, 221 14, 3 989, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i626] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 32602, 61 32603, 165 32604, 178 45569, 221 45825, 168 32605, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1279] | 0.50 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 49939, 44 49940, 226 49941, 250 64226, 221 49942, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1107] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 38840, 176 38841, 166 38842, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i452] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 43266, 37 43267, 20 43268, 243 20, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1381] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 54432, 208 54433, 192 54434, 44 54370, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i809] | 0.20 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 59908, 10 59909, 196 59910, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1672] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 9244, 216 9245, 106 9246, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1580] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 59147, 112 59148, 45 59149, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i86] | 0.33 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 14782, 101 14783, 102 14784, 23 102, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1210] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 9123, 36 9124, 52 9125, 22 52, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1880] | 0.34 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 38379, 197 38380, 252 38381, 244 252, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i325] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 34092, 97 34093, 9 34094, 13 9, 142 213, 233 214, 122 31465, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1858] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 9738, 197 9739, 125 9740, 210 125, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i148] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 57309, 117 57310, 23 57311, 227 23, 132 39, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i810] | 0.30 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 5624, 10 5625, 64 5626, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i541] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 19218, 53 19219, 147 19220, 125 147, 234 101, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i915] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 15604, 22 15605, 104 15606, 16 104, 170 91, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i627] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 47786, 61 47787, 139 47788, 75 19312, 189 19568, 158 47789, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i250] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 32318, 121 32319, 166 32320, 147 37682, 101 37938, 243 32321, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i706] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 50379, 33 50380, 242 50381, 142 242, 130 180, 6 181, 182 46598, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1211] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 43844, 36 43845, 204 43846, 126 204, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i453] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 42255, 37 42256, 209 42257, 109 209, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1382] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 56492, 208 56493, 83 56494, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1581] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 1331, 112 1332, 214 1333, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1673] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 29800, 216 29801, 78 29802, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1108] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 434, 176 435, 86 436, 139 266, 98 522, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1859] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 62839, 197 62840, 199 62841, 112 199, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1000] | 0.44 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 18106, 30 18107, 39 18108, 247 63296, 24 18109, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i87] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 14583, 101 14584, 217 14585, 57 217, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1881] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 4307, 197 4308, 62 4309, 68 62, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json-i149] | 0.46 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/75.json 61029, 117 61030, 120 61031, 223 120, 237 196, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1280] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 9657, 44 9658, 73 9659, 2 585, 141 9660, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i811] | 0.23 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 14702, 10 14703, 118 14704, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i326] | 0.50 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 13137, 97 13138, 60 13139, 235 60, 57 230, 19 231, 87 22291, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1674] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 63958, 216 63959, 255 63960, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1383] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 59144, 208 59145, 156 59146, 243 59302, 20 59046, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1109] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 43899, 176 43900, 239 43901, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i542] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 34198, 53 34199, 12 34200, 188 12, 67 22, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i916] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 55064, 22 55065, 99 55066, 80 99, 70 167, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1582] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 13133, 112 13134, 118 13135, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i251] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 13981, 121 13982, 33 13983, 40 10483, 52 13984, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1212] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 35826, 36 35827, 196 35828, 7 196, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1860] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 44500, 197 44501, 190 44502, 151 190, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i454] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 34875, 37 34876, 135 34877, 90 135, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i628] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 43993, 61 43994, 93 43995, 172 44151, 98 43996, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i812] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 39872, 10 39873, 88 39874, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i88] | 0.25 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 62801, 101 62802, 39 62803, 123 39, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1001] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 54260, 30 54261, 255 54262, 219 56132, 104 56388, 14 54263, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1675] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 494, 216 495, 83 496, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1882] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 20701, 197 20702, 188 20703, 124 188, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i707] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 18279, 33 18280, 108 18281, 197 108, 37 26, 181 27, 110 28341, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1281] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 32340, 44 32341, 94 32342, 48 12382, 162 32343, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1384] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 55801, 208 55802, 46 55803, 176 55593, 50 55849, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i543] | 0.51 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 61578, 53 61579, 158 61580, 194 158, 233 91, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1110] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 52772, 176 52773, 209 52774, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i150] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 53124, 109 53125, 158 53126, 94 24222, 115 53127, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i455] | 0.31 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 35, 37 36, 88 37, 128 88, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1583] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 32258, 112 32259, 218 32260, 221 32478, 179 32222, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i813] | 0.17 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 14741, 10 14742, 18 14743, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1213] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 53475, 36 53476, 85 53477, 197 85, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1676] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 10812, 216 10813, 9 10814, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1861] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 44710, 197 44711, 61 44712, 200 61, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i917] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 50375, 22 50376, 125 50377, 43 125, 161 123, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i252] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 9527, 121 9528, 175 9529, 203 52201, 247 9530, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i327] | 0.54 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 35044, 97 35045, 134 35046, 16 134, 228 85, 232 86, 47 12264, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i89] | 0.32 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 55440, 101 55441, 97 55442, 165 97, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1883] | 0.31 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 45346, 197 45347, 77 45348, 167 77, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i629] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 22089, 61 22090, 10 22091, 13 3559, 241 22092, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i814] | 0.31 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 49833, 10 49834, 118 49835, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1002] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 63968, 30 63969, 215 63970, 114 29330, 14 29586, 204 63971, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1111] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 6094, 176 6095, 230 6096, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1385] | 0.22 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 38656, 208 38657, 153 38658, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1282] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 32968, 44 32969, 249 32970, 168 43257, 130 32971, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i151] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 21325, 109 21326, 51 21327, 37 9523, 111 21328, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i456] | 0.28 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 50265, 37 50266, 88 50267, 170 88, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1584] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 27476, 112 27477, 91 27478, 61 27569, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1677] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 43429, 216 43430, 73 43431, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1214] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 28438, 36 28439, 93 28440, 155 93, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i90] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 30549, 101 30550, 100 30551, 131 100, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1862] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 895, 197 896, 38 897, 58 38, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i544] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 42512, 53 42513, 44 42514, 206 44, 81 209, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1884] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 54491, 197 54492, 32 54493, 249 32, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i708] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 42568, 33 42569, 143 42570, 133 143, 87 243, 233 244, 63 16361, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1386] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 35336, 208 35337, 102 35338, 55 35440, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i253] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 20106, 121 20107, 164 20108, 121 31179, 195 20109, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1112] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 11453, 176 11454, 172 11455, 119 11371, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1283] | 0.50 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 24464, 44 24465, 239 24466, 66 17135, 45 24467, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i630] | 0.48 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 13823, 61 13824, 228 13825, 72 18462, 237 18718, 251 13826, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i815] | 0.17 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 23085, 10 23086, 37 23087, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i918] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 62515, 22 62516, 71 62517, 202 71, 57 111, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1678] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 53686, 216 53687, 95 53688, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i457] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 9833, 37 9834, 114 9835, 65 114, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1585] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 18794, 112 18795, 214 18796, 137 18754, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i328] | 0.48 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 63250, 97 63251, 157 63252, 235 157, 89 214, 144 215, 192 49296, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i152] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 10497, 109 10498, 45 10499, 9 2349, 246 10500, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1003] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 9847, 30 9848, 88 9849, 181 46338, 52 46594, 144 9850, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i816] | 0.30 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 56915, 10 56916, 242 56917, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1215] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 50141, 36 50142, 245 50143, 246 245, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1863] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 59151, 197 59152, 210 59153, 33 210, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1387] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 46406, 208 46407, 114 46408, 207 46522, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i91] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 9312, 101 9313, 210 9314, 17 210, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i545] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 33151, 53 33152, 51 33153, 204 51, 173 156, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1113] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 15600, 176 15601, 168 15602, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i709] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 25950, 33 25951, 86 25952, 75 86, 140 195, 28 196, 82 21020, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i254] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 17547, 121 17548, 180 17549, 197 50552, 182 50808, 242 17550, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1885] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 41648, 197 41649, 178 41650, 245 178, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1679] | 0.16 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 35213, 216 35214, 85 35215, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1216] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 36409, 36 36410, 208 36411, 4 208, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1586] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 18732, 112 18733, 122 18734, 116 18856, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i919] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 41572, 22 41573, 173 41574, 198 173, 56 112, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i458] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 30540, 37 30541, 61 30542, 198 61, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1864] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 56567, 197 56568, 129 56569, 12 129, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1284] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 13451, 44 13452, 196 13453, 49 12740, 113 13454, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i631] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 18192, 61 18193, 13 18194, 80 20703, 179 18195, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1680] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 48057, 216 48058, 242 48059, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i817] | 0.20 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 12842, 10 12843, 223 12844, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i546] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 27265, 53 27266, 218 27267, 183 218, 209 88, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i153] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 37880, 109 37881, 27 37882, 49 12571, 211 37883, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i329] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 44270, 97 44271, 134 44272, 131 134, 84 199, 158 200, 35 9118, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1004] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 28733, 30 28734, 228 28735, 16 4108, 217 4364, 31 28736, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1388] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 14986, 208 14987, 202 14988, 13 14934, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1114] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 49903, 176 49904, 214 49905, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1886] | 0.21 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 21344, 197 21345, 56 21346, 177 56, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i92] | 0.21 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 47191, 101 47192, 57 47193, 95 57, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i255] | 0.50 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 20571, 121 20572, 20 20573, 90 23265, 101 20574, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i818] | 0.30 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 3700, 10 3701, 231 3702, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1217] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 48674, 36 48675, 41 48676, 72 41, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1587] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 15650, 112 15651, 210 15652, 46 15862, 213 15606, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1865] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 45228, 197 45229, 94 45230, 159 94, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i154] | 0.47 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 13775, 109 13776, 107 13777, 101 25963, 45 13778, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i459] | 0.23 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 3818, 37 3819, 175 3820, 219 175, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1681] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 387, 216 388, 102 389, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i710] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 55575, 33 55576, 168 55577, 225 168, 5 55, 61 56, 143 36669, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1285] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 38993, 44 38994, 136 38995, 121 31112, 252 38996, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i920] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 12428, 22 12429, 2 12430, 242 2, 77 225, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1389] | 0.30 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 55456, 208 55457, 156 55458, 22 55358, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1887] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 39239, 197 39240, 118 39241, 223 118, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json-i93] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/65.json 42753, 101 42754, 201 42755, 196 201, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i632] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 45502, 61 45503, 200 45504, 10 2775, 55 45505, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i330] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 41226, 97 41227, 157 41228, 221 157, 106 223, 110 224, 221 56686, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i547] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 4266, 53 4267, 197 4268, 110 197, 226 127, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1115] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 14080, 176 14081, 189 14082, 255 14271, 6 14015, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1588] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 14712, 112 14713, 91 14714, 11 14805, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i819] | 0.21 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 41987, 10 41988, 219 41989, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1682] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 32996, 216 32997, 109 32998, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i460] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 36819, 37 36820, 174 36821, 15 174, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1005] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 13040, 30 13041, 169 13042, 228 58539, 134 13043, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1218] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 45974, 36 45975, 209 45976, 167 209, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1866] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 50968, 197 50969, 178 50970, 44 178, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1390] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 12593, 208 12594, 108 12595, 155 12703, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i921] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 28155, 22 28156, 124 28157, 121 124, 232 253, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1888] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 11825, 197 11826, 69 11827, 252 69, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i711] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 43728, 33 43729, 217 43730, 109 217, 83 168, 39 169, 255 65319, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i256] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 32906, 121 32907, 203 32908, 7 1993, 30 2249, 231 32909, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i820] | 0.30 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 63796, 10 63797, 194 63798, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2020] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 10061, 221 10062, 124 10063, 251 64300, 74 64556, 195 10064, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1116] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 19326, 176 19327, 95 19328, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1286] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 3272, 44 3273, 67 3274, 193 49475, 41 3275, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i155] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 17362, 109 17363, 22 17364, 87 22294, 179 17365, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i633] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 36479, 61 36480, 226 36481, 213 54655, 113 54911, 42 36482, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1589] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 20985, 112 20986, 76 20987, 201 20807, 48 21063, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i461] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 42610, 37 42611, 151 42612, 224 151, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1683] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 57861, 216 57862, 35 57863, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i548] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 35524, 53 35525, 75 35526, 72 75, 169 122, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1867] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 58762, 197 58763, 12 58764, 66 12, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1219] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 61646, 36 61647, 63 61648, 234 63, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i331] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 32695, 97 32696, 178 32697, 85 178, 184 127, 145 128, 27 7057, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1006] | 0.55 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 42372, 30 42373, 12 42374, 0 123, 6 42375, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i821] | 0.22 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 24394, 10 24395, 83 24396, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1117] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 55776, 176 55777, 20 55778, 233 55798, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1391] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 25774, 208 25775, 122 25776, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1889] | 0.34 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 40791, 197 40792, 71 40793, 54 71, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1684] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 13361, 216 13362, 208 13363, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2021] | 0.48 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 60337, 221 60338, 226 60339, 246 63037, 31 63293, 45 60340, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i257] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 22910, 121 22911, 122 22912, 37 9505, 10 9761, 11 22913, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1287] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 16919, 44 16920, 9 16921, 244 62473, 250 16922, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i922] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 51230, 22 51231, 169 51232, 209 169, 4 159, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i156] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 16625, 109 16626, 61 16627, 19 4925, 117 16628, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1868] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 6788, 197 6789, 156 6790, 131 156, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i634] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 46414, 61 46415, 71 46416, 121 31149, 95 46417, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json-i549] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/35.json 6853, 53 6854, 229 6855, 57 229, 143 56, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i462] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 52604, 37 52605, 139 52606, 108 139, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1590] | 0.19 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 60642, 112 60643, 224 60644, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i712] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 46404, 33 46405, 87 46406, 130 87, 38 216, 249 217, 60 15609, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i822] | 0.31 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 20597, 10 20598, 218 20599, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1392] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 54062, 208 54063, 104 54064, 244 54168, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1220] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 19751, 36 19752, 123 19753, 241 123, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1288] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 33282, 44 33283, 34 33284, 165 42274, 104 33285, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1685] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 63465, 216 63466, 255 63467, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1890] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 21253, 197 21254, 140 21255, 119 140, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1118] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 64025, 176 64026, 196 64027, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1591] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 34258, 112 34259, 227 34260, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i157] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 23943, 109 23944, 151 23945, 129 33175, 55 23946, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i332] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 18135, 97 18136, 148 18137, 191 148, 209 152, 233 153, 155 39913, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i550] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 22459, 45 22460, 19 22461, 116 29715, 221 22462, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i258] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 32088, 121 32089, 219 32090, 53 13706, 2 13962, 51 32091, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json-i1221] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/24.json 23185, 36 23186, 161 23187, 48 161, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1007] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 41438, 30 41439, 144 41440, 227 58204, 129 58460, 34 41441, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1869] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 5409, 197 5410, 228 5411, 127 228, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1686] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 46013, 216 46014, 236 46015, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i823] | 0.19 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 51583, 10 51584, 137 51585, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i635] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 47866, 61 47867, 200 47868, 216 55365, 248 55621, 83 47869, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1393] | 0.30 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 24498, 208 24499, 126 24500, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i463] | 0.21 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 39016, 37 39017, 25 39018, 230 25, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2022] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 57477, 221 57478, 156 57479, 14 3800, 54 57480, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i923] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 24272, 22 24273, 170 24274, 55 170, 227 215, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1119] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 28894, 176 28895, 237 28896, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i713] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 58960, 33 58961, 171 58962, 175 171, 197 138, 135 139, 228 58503, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1289] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 45574, 44 45575, 248 45576, 94 24312, 170 45577, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i824] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 16438, 10 16439, 68 16440, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1592] | 0.30 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 56652, 112 56653, 10 56654, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1891] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 19105, 197 19106, 215 19107, 39 215, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i464] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 53684, 37 53685, 30 53686, 180 30, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2157] | 0.57 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 6778, 209 6779, 67 6780, 80 67, 37 68, 82 21160, 222 base: 67 lo: 37 hi: 82 deref_base: 21029 y_register: 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1687] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 44512, 216 44513, 120 44514, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i333] | 0.57 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 65154, 97 65155, 206 65156, 234 206, 160 96, 205 97, 224 57549, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1870] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 31837, 197 31838, 1 31839, 62 1, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1394] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 58558, 208 58559, 8 58560, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i259] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 35564, 121 35565, 173 35566, 238 60981, 97 61237, 26 35567, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i158] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 48333, 109 48334, 149 48335, 129 33173, 125 48336, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i636] | 0.53 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 16218, 61 16219, 5 16220, 15 3939, 65 16221, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i551] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 37336, 45 37337, 75 37338, 93 23883, 150 37339, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1008] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 16400, 30 16401, 144 16402, 88 22622, 250 22878, 140 16403, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i924] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 25074, 22 25075, 70 25076, 54 70, 8 148, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1120] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 6721, 176 6722, 236 6723, 131 6703, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2023] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 9555, 221 9556, 52 9557, 147 37783, 201 9558, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1892] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 65489, 197 65490, 77 65491, 79 77, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1688] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 57041, 216 57042, 27 57043, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1593] | 0.18 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 25078, 112 25079, 41 25080, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i825] | 0.28 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 29342, 10 29343, 100 29344, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1290] | 0.26 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 57614, 44 57615, 184 57616, 33 8632, 222 57617, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i465] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 18197, 37 18198, 46 18199, 35 46, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i714] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 39141, 33 39142, 110 39143, 59 110, 85 100, 137 101, 208 53385, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1395] | 0.20 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 3241, 208 3242, 59 3243, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1594] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 42419, 112 42420, 61 42421, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i260] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 31559, 121 31560, 155 31561, 185 47509, 144 47765, 112 31562, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1871] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 15115, 197 15116, 139 15117, 153 139, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1121] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 55525, 176 55526, 74 55527, 111 55345, 221 55601, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i159] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 27064, 109 27065, 226 27066, 96 24802, 68 27067, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1009] | 0.57 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 32170, 30 32171, 62 32172, 141 36237, 73 32173, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i552] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 58107, 45 58108, 242 58109, 232 59634, 109 58110, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1893] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 63679, 197 63680, 8 63681, 237 8, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i925] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 25986, 22 25987, 41 25988, 200 41, 94 231, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1689] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 46072, 216 46073, 175 46074, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i826] | 0.27 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 18984, 10 18985, 206 18986, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1291] | 0.48 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 57469, 44 57470, 241 57471, 40 10481, 139 57472, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2158] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 41858, 209 41859, 62 41860, 16 62, 0 63, 100 25667, 24 base: 62 lo: 0 hi: 100 deref_base: 25600 y_register: 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1396] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 32366, 208 32367, 25 32368, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i334] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 57439, 97 57440, 35 57441, 115 35, 50 51, 103 52, 225 57703, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2024] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 53231, 221 53232, 67 53233, 62 16033, 19 53234, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i637] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 53508, 61 53509, 112 53510, 93 24018, 85 53511, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i466] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 52352, 37 52353, 27 52354, 183 27, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1872] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 14651, 197 14652, 79 14653, 192 79, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1122] | 0.28 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 31979, 176 31980, 173 31981, 39 31898, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1595] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 39084, 112 39085, 46 39086, 251 39132, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1690] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 44154, 216 44155, 220 44156, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i715] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 28513, 33 28514, 224 28515, 173 224, 120 30, 145 31, 21 5521, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i261] | 0.56 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 47196, 121 47197, 8 47198, 225 57794, 211 47199, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i827] | 0.23 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 53563, 10 53564, 17 53565, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1894] | 0.37 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 38491, 197 38492, 66 38493, 82 66, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i553] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 43245, 45 43246, 206 43247, 119 30670, 213 43248, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i926] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 42489, 22 42490, 174 42491, 223 174, 207 129, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i160] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 55586, 109 55587, 132 55588, 123 31620, 106 55589, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1397] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 55744, 208 55745, 92 55746, 181 55582, 197 55838, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i467] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 45505, 37 45506, 28 45507, 228 28, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i335] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 14748, 97 14749, 235 14750, 228 235, 19 94, 241 95, 143 36849, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2159] | 0.57 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 8816, 209 8817, 52 8818, 16 52, 140 53, 225 57696, 237 57952, 149 base: 52 lo: 140 hi: 225 deref_base: 57740 y_register: 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1123] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 5421, 176 5422, 27 5423, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2025] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 19346, 221 19347, 123 19348, 95 24552, 31 19349, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i638] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 64203, 61 64204, 4 64205, 232 59626, 60 64206, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json-i1691] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d8.json 65387, 216 65388, 7 65389, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1873] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 58289, 197 58290, 31 58291, 236 31, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i828] | 0.31 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 62910, 10 62911, 100 62912, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1292] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 16802, 44 16803, 146 16804, 121 31122, 79 16805, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1010] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 7500, 30 7501, 231 7502, 103 26408, 236 26664, 97 7503, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1596] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 44416, 112 44417, 18 44418, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i161] | 0.49 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 28805, 109 28806, 188 28807, 61 15804, 182 28808, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1895] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 6685, 197 6686, 181 6687, 37 181, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2290] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 59904, 228 59905, 112 59906, 92 112, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1398] | 0.22 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 43325, 208 43326, 100 43327, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i554] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 17223, 45 17224, 3 17225, 232 59395, 102 17226, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i927] | 0.54 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 41351, 22 41352, 7 41353, 239 7, 227 131, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i716] | 0.59 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 54611, 33 54612, 210 54613, 205 210, 209 51, 142 52, 122 31374, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1124] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 41286, 176 41287, 190 41288, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i468] | 0.26 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 28063, 37 28064, 240 28065, 207 240, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i829] | 0.22 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 59605, 10 59606, 190 59607, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i262] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 56082, 121 56083, 41 56084, 160 41062, 109 56085, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2026] | 0.49 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 53206, 221 53207, 162 53208, 50 13039, 159 53209, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1874] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 27871, 197 27872, 212 27873, 33 212, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i639] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 42116, 61 42117, 241 42118, 107 27537, 235 27793, 89 42119, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json-i1597] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/70.json 20599, 112 20600, 219 20601, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1293] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 31053, 44 31054, 6 31055, 249 63750, 227 31056, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json-i1399] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d0.json 29445, 208 29446, 138 29447, 148 29585, 76 29329, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i336] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 8348, 97 8349, 79 8350, 93 79, 133 153, 166 154, 178 45734, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i555] | 0.49 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 53107, 45 53108, 108 53109, 202 51820, 89 53110, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1011] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 12266, 30 12267, 246 12268, 136 35033, 78 35289, 121 12269, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2160] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 36754, 209 36755, 36 36756, 182 36, 32 37, 75 19315, 19 base: 36 lo: 32 hi: 75 deref_base: 19232 y_register: 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1125] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 59809, 176 59810, 109 59811, 241 59664, 46 59920, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2291] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 62853, 228 62854, 63 62855, 169 63, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i830] | 0.29 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 26970, 10 26971, 236 26972, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1896] | 0.22 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 45056, 197 45057, 40 45058, 176 40, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json-i469] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/25.json 16072, 37 16073, 53 16074, 240 53, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i162] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 31306, 109 31307, 53 31308, 231 59189, 177 31309, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2420] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 49324, 196 49325, 94 49326, 118 94, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1875] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 44872, 197 44873, 79 44874, 233 79, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i263] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 30482, 121 30483, 228 30484, 169 43340, 29 43596, 229 30485, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i640] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 8935, 61 8936, 172 8937, 125 32209, 168 8938, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1897] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 23103, 197 23104, 184 23105, 67 184, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i928] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 27639, 22 27640, 180 27641, 11 180, 161 231, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1400] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 53844, 16 53845, 145 53846, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1294] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 31870, 44 31871, 41 31872, 17 4393, 29 31873, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2027] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 34602, 221 34603, 13 34604, 250 64051, 17 34605, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i831] | 0.16 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 39421, 10 39422, 235 39423, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1126] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 30401, 176 30402, 38 30403, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i717] | 0.47 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 36822, 33 36823, 231 36824, 116 231, 255 112, 132 113, 186 47748, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2292] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 55644, 228 55645, 93 55646, 45 93, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1012] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 36494, 30 36495, 113 36496, 77 19839, 43 36497, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i337] | 0.50 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 28304, 97 28305, 193 28306, 167 193, 126 92, 124 93, 152 39036, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2547] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 29083, 198 29084, 22 29085, 8 22, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2161] | 0.61 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 32800, 209 32801, 34 32802, 113 34, 72 35, 33 8543, 18 base: 34 lo: 72 hi: 33 deref_base: 8520 y_register: 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1876] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 10528, 197 10529, 129 10530, 78 129, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i556] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 23664, 45 23665, 32 23666, 123 31520, 108 23667, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2421] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 25883, 196 25884, 72 25885, 84 72, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i163] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 44742, 109 44743, 8 44744, 186 47624, 207 44745, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i832] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 21315, 10 21316, 107 21317, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1401] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 49663, 16 49664, 208 49665, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1295] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 48480, 44 48481, 112 48482, 59 15216, 254 48483, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1898] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 37126, 197 37127, 53 37128, 16 53, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i264] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 54462, 121 54463, 66 54464, 21 5552, 78 54465, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i641] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 8041, 61 8042, 5 8043, 104 26824, 21 8044, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i929] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 35442, 22 35443, 143 35444, 127 143, 106 27, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2293] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 9978, 228 9979, 117 9980, 224 117, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json-i1127] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b0.json 31893, 176 31894, 187 31895, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2028] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 990, 221 991, 168 992, 165 42277, 246 42533, 175 993, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2548] | 0.33 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 40461, 198 40462, 49 40463, 153 49, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1877] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 43789, 197 43790, 126 43791, 201 126, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i718] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 50653, 33 50654, 78 50655, 112 78, 3 105, 83 106, 229 58707, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1402] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 41379, 16 41380, 152 41381, 73 41277, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i833] | 0.23 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 17588, 10 17589, 83 17590, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2422] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 61261, 196 61262, 77 61263, 42 77, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i557] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 17072, 45 17073, 70 17074, 158 40518, 148 17075, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i164] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 51178, 109 51179, 204 51180, 211 54220, 55 51181, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i338] | 0.56 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 30038, 97 30039, 146 30040, 35 146, 184 147, 208 53432, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1899] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 57039, 197 57040, 105 57041, 215 105, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1013] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 35865, 30 35866, 67 35867, 142 36415, 75 36671, 198 35868, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2162] | 0.44 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 28227, 209 28228, 36 28229, 141 36, 2 37, 175 44839, 45 base: 36 lo: 2 hi: 175 deref_base: 44802 y_register: 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i265] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 15071, 121 15072, 59 15073, 171 43804, 173 44060, 171 15074, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i642] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 47205, 61 47206, 90 47207, 238 61127, 39 47208, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1296] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 6750, 44 6751, 227 6752, 45 11747, 220 6753, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2294] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 60617, 228 60618, 18 60619, 17 18, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2671] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 58128, 222 58129, 16 58130, 57 14604, 175 14860, 124 58131, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i834] | 0.31 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 31434, 10 31435, 196 31436, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2549] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 43372, 198 43373, 195 43374, 165 195, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i930] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 7900, 22 7901, 168 7902, 144 168, 70 243, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i558] | 0.50 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 54319, 45 54320, 208 54321, 226 58064, 88 54322, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1878] | 0.29 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 15250, 197 15251, 50 15252, 63 50, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2029] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 61758, 221 61759, 110 61760, 223 57318, 15 61761, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1403] | 0.30 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 33557, 16 33558, 62 33559, 22 33621, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2423] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 28167, 196 28168, 56 28169, 250 56, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i719] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 29893, 33 29894, 58 29895, 9 58, 9 56, 214 57, 244 62678, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i165] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 28427, 109 28428, 99 28429, 13 3427, 169 28430, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1900] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 4659, 213 4660, 248 4661, 166 248, 74 239, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2295] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 5127, 228 5128, 171 5129, 254 171, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1014] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 11652, 30 11653, 6 11654, 139 35705, 233 11655, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i835] | 0.21 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 52650, 10 52651, 43 52652, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i266] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 45350, 121 45351, 60 45352, 5 1346, 81 45353, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1297] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 54592, 44 54593, 44 54594, 221 56620, 67 54595, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2424] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 30554, 196 30555, 26 30556, 121 26, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json-i1879] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c5.json 50806, 197 50807, 96 50808, 115 96, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2550] | 0.54 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 5949, 214 5950, 48 5951, 50 48, 162 1, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i339] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 2521, 97 2522, 219 2523, 99 219, 24 120, 60 121, 85 21820, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2163] | 0.55 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 59012, 209 59013, 160 59014, 186 160, 206 161, 130 33319, 49 33575, 23 base: 160 lo: 206 hi: 130 deref_base: 33486 y_register: 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1404] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 20989, 16 20990, 116 20991, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2672] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 62588, 222 62589, 212 62590, 173 44508, 27 62591, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i931] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 47297, 22 47298, 105 47299, 19 105, 135 144, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i166] | 0.47 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 37523, 109 37524, 94 37525, 24 6238, 87 37526, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i643] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 21478, 61 21479, 88 21480, 160 41068, 157 21481, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2030] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 45528, 221 45529, 124 45530, 14 3717, 150 45531, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i836] | 0.32 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 30862, 10 30863, 199 30864, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1901] | 0.37 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 17910, 213 17911, 153 17912, 172 153, 122 52, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i559] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 36840, 45 36841, 79 36842, 142 36431, 184 36843, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2296] | 0.35 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 49923, 228 49924, 59 49925, 195 59, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1015] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 31988, 30 31989, 230 31990, 203 52080, 88 52336, 208 31991, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1405] | 0.27 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 36204, 16 36205, 235 36206, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i720] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 54648, 33 54649, 148 54650, 186 148, 114 107, 242 108, 106 27378, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2425] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 48239, 196 48240, 151 48241, 44 151, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i267] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 1304, 121 1305, 159 1306, 82 21241, 193 1307, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2791] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 15374, 136 15375, 10 15376, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1298] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 52569, 44 52570, 251 52571, 18 4859, 194 52572, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i340] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 51470, 97 51471, 171 51472, 40 171, 211 155, 77 156, 244 62541, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2673] | 0.55 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 14082, 222 14083, 112 14084, 29 7457, 177 7713, 16 14085, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i932] | 0.47 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 33053, 22 33054, 35 33055, 212 35, 131 134, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i644] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 4587, 61 4588, 210 4589, 142 36486, 186 36742, 166 4590, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i837] | 0.18 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 23343, 10 23344, 15 23345, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2031] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 24386, 221 24387, 74 24388, 47 12158, 86 24389, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1406] | 0.38 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 32409, 16 32410, 179 32411, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i167] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 16427, 109 16428, 131 16429, 159 40835, 27 16430, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2551] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 21902, 214 21903, 158 21904, 250 158, 194 24, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2297] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 8359, 228 8360, 4 8361, 223 4, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i560] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 39183, 45 39184, 69 39185, 151 38725, 202 39186, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1902] | 0.33 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 47191, 213 47192, 101 47193, 151 101, 181 90, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2164] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 42203, 209 42204, 10 42205, 110 10, 142 11, 217 55772, 49 base: 10 lo: 142 hi: 217 deref_base: 55694 y_register: 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2792] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 57923, 136 57924, 5 57925, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2426] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 14795, 196 14796, 21 14797, 73 21, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i838] | 0.32 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 38786, 10 38787, 102 38788, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json-i1299] | 0.26 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2c.json 58128, 44 58129, 238 58130, 49 12782, 113 58131, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i268] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 15555, 121 15556, 17 15557, 42 10907, 207 15558, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1016] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 37220, 30 37221, 83 37222, 110 28359, 136 37223, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i721] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 23778, 33 23779, 172 23780, 9 172, 213 71, 66 72, 12 3138, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i645] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 59070, 61 59071, 167 59072, 197 50518, 24 50774, 127 59073, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2298] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 12058, 228 12059, 173 12060, 180 173, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1903] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 34888, 213 34889, 36 34890, 13 36, 175 198, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2032] | 0.52 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 29728, 221 29729, 243 29730, 154 39434, 217 39690, 22 29731, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i933] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 59784, 22 59785, 246 59786, 14 246, 153 58, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1407] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 7580, 16 7581, 76 7582, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2793] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 53417, 136 53418, 157 53419, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2552] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 13137, 214 13138, 133 13139, 103 133, 228 38, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i168] | 0.28 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 8695, 109 8696, 242 8697, 35 9202, 65 8698, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i561] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 9990, 45 9991, 197 9992, 134 34501, 26 9993, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2674] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 58454, 222 58455, 248 58456, 199 51128, 5 51384, 141 58457, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i341] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 64748, 97 64749, 0 64750, 126 0, 183 250, 234 251, 214 55018, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2165] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 15742, 209 15743, 88 15744, 15 88, 196 89, 200 51374, 111 51630, 63 base: 88 lo: 196 hi: 200 deref_base: 51396 y_register: 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i839] | 0.19 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 27056, 10 27057, 95 27058, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1300] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 41700, 48 41701, 96 41702, 8 41542, 100 41798, 146 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2427] | 0.21 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 50711, 196 50712, 234 50713, 117 234, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2299] | 0.36 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 31335, 228 31336, 110 31337, 72 110, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2794] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 17571, 136 17572, 250 17573, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1017] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 2638, 30 2639, 218 2640, 111 28561, 173 28817, 168 2641, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i562] | 0.49 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 42488, 45 42489, 226 42490, 80 20706, 229 42491, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i840] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 13017, 10 13018, 212 13019, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i169] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 43874, 109 43875, 113 43876, 108 27761, 116 43877, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i269] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 1427, 121 1428, 30 1429, 28 7368, 75 1430, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i722] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 26098, 33 26099, 141 26100, 63 141, 211 101, 62 102, 24 6206, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2428] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 56168, 196 56169, 49 56170, 133 49, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1904] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 19412, 213 19413, 195 19414, 221 195, 117 33, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1408] | 0.22 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 48224, 16 48225, 151 48226, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i646] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 48553, 61 48554, 104 48555, 82 21108, 128 48556, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i934] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 61770, 22 61771, 182 61772, 10 182, 169 210, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2553] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 60864, 214 60865, 127 60866, 178 127, 199 29, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1301] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 39251, 48 39252, 2 39253, 239 39255, 150 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i342] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 12346, 97 12347, 63 12348, 205 63, 146 129, 247 130, 161 41463, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2675] | 0.53 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 22156, 222 22157, 14 22158, 62 16070, 218 22159, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2166] | 0.61 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 32638, 209 32639, 241 32640, 58 241, 131 242, 135 34727, 113 base: 241 lo: 131 hi: 135 deref_base: 34691 y_register: 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2033] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 55880, 221 55881, 228 55882, 107 27502, 51 27758, 71 55883, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2795] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 37596, 136 37597, 192 37598, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2300] | 0.35 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 46435, 236 46436, 3 46437, 156 39939, 248 46438, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json-i1409] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/10.json 62000, 16 62001, 104 62002, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i841] | 0.24 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 27752, 10 27753, 90 27754, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2429] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 21802, 196 21803, 97 21804, 9 97, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1905] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 763, 213 764, 196 765, 200 196, 192 170, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2796] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 35772, 136 35773, 10 35774, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i270] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 58373, 121 58374, 54 58375, 103 26391, 198 26647, 210 58376, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i723] | 0.49 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 29097, 33 29098, 233 29099, 76 233, 12 73, 200 74, 80 20680, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i647] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 6132, 61 6133, 158 6134, 142 36443, 110 36699, 44 6135, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i170] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 47376, 109 47377, 74 47378, 155 39754, 56 47379, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1302] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 15995, 48 15996, 186 15997, 48 15927, 38 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2554] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 54494, 214 54495, 52 54496, 146 52, 179 155, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json-i563] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2d.json 50840, 45 50841, 116 50842, 183 46964, 93 50843, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i935] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 33445, 22 33446, 69 33447, 120 69, 61 173, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1018] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 41265, 30 41266, 32 41267, 108 27765, 91 41268, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2908] | 0.38 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 24854, 85 24855, 179 24856, 231 179, 178 209, 145 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i842] | 0.32 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 48525, 10 48526, 195 48527, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2797] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 21044, 136 21045, 100 21046, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2301] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 17751, 236 17752, 209 17753, 33 8657, 27 17754, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2034] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 26366, 221 26367, 9 26368, 111 28490, 135 26369, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i343] | 0.62 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 25879, 97 25880, 179 25881, 184 179, 104 23, 8 24, 253 64776, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2676] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 42648, 222 42649, 172 42650, 212 54521, 239 42651, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2430] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 13673, 196 13674, 80 13675, 18 80, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1906] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 56163, 213 56164, 186 56165, 54 186, 243 250, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1303] | 0.26 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 6629, 48 6630, 227 6631, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i271] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 52731, 121 52732, 66 52733, 233 59766, 158 52734, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2167] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 27218, 209 27219, 103 27220, 87 103, 191 104, 210 53883, 207 54139, 8 base: 103 lo: 191 hi: 210 deref_base: 53951 y_register: 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2555] | 0.52 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 59876, 214 59877, 115 59878, 150 115, 40 238, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i936] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 7924, 22 7925, 10 7926, 152 10, 180 72, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i171] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 32487, 109 32488, 205 32489, 58 15053, 75 32490, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i648] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 35896, 61 35897, 130 35898, 48 12508, 77 35899, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3023] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 50426, 93 50427, 95 50428, 159 40793, 241 41049, 202 50429, 113 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1019] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 45217, 30 45218, 24 45219, 255 65468, 71 45220, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i843] | 0.27 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 36186, 10 36187, 127 36188, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2798] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 37677, 136 37678, 153 37679, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i724] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 21439, 33 21440, 174 21441, 234 174, 178 169, 194 170, 32 8386, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2909] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 689, 85 690, 51 691, 221 51, 219 251, 115 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2302] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 42643, 236 42644, 122 42645, 190 48762, 55 42646, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1304] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 28338, 48 28339, 145 28340, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2431] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 35683, 196 35684, 195 35685, 212 195, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2035] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 56168, 221 56169, 186 56170, 220 56349, 30 56605, 124 56171, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2799] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 15786, 136 15787, 36 15788, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2677] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 20240, 222 20241, 90 20242, 8 2239, 16 20243, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i844] | 0.32 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 49902, 10 49903, 115 49904, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i272] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 45825, 121 45826, 78 45827, 4 1241, 8 45828, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json-i649] | 0.53 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3d.json 52165, 61 52166, 211 52167, 17 4355, 66 4611, 254 52168, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2168] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 4201, 209 4202, 48 4203, 105 48, 243 49, 63 16346, 194 16602, 70 base: 48 lo: 243 hi: 63 deref_base: 16371 y_register: 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3024] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 27187, 93 27188, 130 27189, 16 4319, 74 27190, 252 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i344] | 0.48 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 21300, 97 21301, 6 21302, 232 6, 175 208, 229 209, 123 31717, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1907] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 12734, 213 12735, 156 12736, 155 156, 116 206, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i172] | 0.27 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 49598, 109 49599, 169 49600, 123 31657, 117 49601, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2432] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 27245, 196 27246, 133 27247, 5 133, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1020] | 0.53 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 32973, 30 32974, 7 32975, 120 30923, 122 32976, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2303] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 53923, 236 53924, 42 53925, 93 23850, 59 53926, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2556] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 43774, 214 43775, 94 43776, 181 94, 245 1, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1305] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 47791, 48 47792, 101 47793, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2910] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 27542, 85 27543, 213 27544, 196 213, 80 44, 137 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i937] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 25163, 22 25164, 65 25165, 30 65, 120 185, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2800] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 50746, 73 50747, 225 50748, 47 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i725] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 56025, 33 56026, 224 56027, 177 224, 192 111, 238 112, 21 5614, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2036] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 27546, 221 27547, 106 27548, 49 12755, 84 27549, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json-i845] | 0.18 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0a.json 37302, 10 37303, 171 37304, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i273] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 31216, 121 31217, 59 31218, 156 39936, 249 40192, 62 31219, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2678] | 0.53 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 26891, 222 26892, 55 26893, 219 56265, 66 26894, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i173] | 0.51 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 44685, 109 44686, 156 44687, 190 48796, 42 44688, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2169] | 0.55 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 15304, 209 15305, 3 15306, 89 3, 56 4, 180 46270, 254 base: 3 lo: 56 hi: 180 deref_base: 46136 y_register: 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2801] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 61727, 73 61728, 216 61729, 45 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3025] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 31706, 93 31707, 153 31708, 29 7480, 92 7736, 110 31709, 109 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2433] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 12599, 196 12600, 123 12601, 218 123, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2911] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 31902, 85 31903, 195 31904, 25 195, 105 98, 198 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1908] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 63666, 213 63667, 217 63668, 50 217, 39 37, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3135] | 0.50 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 14443, 65 14444, 115 14445, 82 115, 109 161, 171 162, 93 23979, 7 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1306] | 0.18 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 39754, 48 39755, 102 39756, 179 39858, 29 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i650] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 36813, 57 36814, 206 36815, 136 34845, 125 35101, 228 36816, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2557] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 51312, 214 51313, 10 51314, 97 10, 67 170, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i345] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 53823, 97 53824, 233 53825, 252 233, 185 7, 219 8, 5 1499, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i938] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 46150, 22 46151, 2 46152, 196 2, 52 155, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2304] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 27413, 236 27414, 78 27415, 200 51278, 66 27416, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1021] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 45154, 30 45155, 27 45156, 5 1452, 181 45157, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i726] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 49448, 33 49449, 242 49450, 203 242, 91 233, 65 234, 214 54849, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2037] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 14659, 221 14660, 80 14661, 46 11872, 83 14662, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1307] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 51550, 48 51551, 160 51552, 106 51456, 186 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i274] | 0.50 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 16270, 121 16271, 212 16272, 214 54867, 91 55123, 187 16273, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1909] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 38155, 213 38156, 69 38157, 240 69, 169 123, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2802] | 0.14 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 53434, 73 53435, 4 53436, 213 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2434] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 57255, 196 57256, 106 57257, 30 106, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2912] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 40749, 85 40750, 88 40751, 191 88, 245 126, 81 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3026] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 28035, 93 28036, 223 28037, 248 63602, 63 63858, 115 28038, 75 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i174] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 48825, 109 48826, 136 48827, 61 15752, 79 48828, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i651] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 13929, 57 13930, 169 13931, 81 20819, 192 21075, 53 13932, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2679] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 1690, 222 1691, 39 1692, 244 62634, 156 1693, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2305] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 28326, 236 28327, 148 28328, 187 48020, 216 28329, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2803] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 38951, 73 38952, 180 38953, 18 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json-i939] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/16.json 27578, 22 27579, 113 27580, 144 113, 86 139, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2558] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 56876, 214 56877, 100 56878, 128 100, 56 139, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i346] | 0.50 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 10305, 97 10306, 139 10307, 212 139, 164 250, 102 251, 117 30054, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2170] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 48720, 209 48721, 71 48722, 47 71, 211 72, 243 62321, 44 62577, 133 base: 71 lo: 211 hi: 243 deref_base: 62419 y_register: 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3136] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 62478, 65 62479, 74 62480, 37 74, 120 9, 189 10, 75 19389, 219 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1022] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 23030, 30 23031, 136 23032, 193 49637, 119 23033, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1308] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 30400, 48 30401, 13 30402, 46 30415, 11 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2038] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 9840, 221 9841, 201 9842, 223 57247, 45 57503, 98 9843, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2435] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 38607, 196 38608, 33 38609, 154 33, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2913] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 57424, 85 57425, 74 57426, 210 74, 89 155, 138 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i727] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 47108, 33 47109, 241 47110, 91 241, 149 219, 182 220, 166 42678, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2804] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 53800, 73 53801, 217 53802, 34 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i275] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 38730, 121 38731, 50 38732, 232 59432, 123 59688, 79 38733, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1910] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 10997, 213 10998, 131 10999, 131 131, 196 16, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3027] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 41690, 93 41691, 114 41692, 177 45370, 6 45626, 63 41693, 96 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2680] | 0.56 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 12987, 222 12988, 114 12989, 14 3631, 81 3887, 245 12990, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i175] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 24631, 109 24632, 160 24633, 47 12192, 45 24634, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2559] | 0.50 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 42484, 214 42485, 113 42486, 23 113, 129 16, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3244] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 52996, 230 52997, 59 52998, 7 59, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i652] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 50893, 57 50894, 75 50895, 81 20971, 235 50896, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2171] | 0.57 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 52846, 209 52847, 70 52848, 53 70, 79 71, 141 36188, 229 base: 70 lo: 79 hi: 141 deref_base: 36175 y_register: 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2306] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 15816, 236 15817, 126 15818, 246 63102, 232 15819, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2436] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 51102, 196 51103, 11 51104, 24 11, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1309] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 20927, 48 20928, 101 20929, 255 20774, 161 21030, 60 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3137] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 25955, 65 25956, 98 25957, 91 98, 107 214, 130 215, 55 14210, 217 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i347] | 0.57 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 33034, 97 33035, 2 33036, 6 2, 186 166, 103 167, 76 19559, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2805] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 36381, 73 36382, 2 36383, 20 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2039] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 55446, 221 55447, 120 55448, 72 18683, 153 55449, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i728] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 36726, 33 36727, 187 36728, 187 187, 176 67, 80 68, 233 59728, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1023] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 11671, 30 11672, 125 11673, 133 34118, 217 34374, 158 11674, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i276] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 23392, 121 23393, 39 23394, 95 24371, 16 23395, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3028] | 0.49 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 50497, 93 50498, 148 50499, 225 57699, 175 57955, 93 50500, 129 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2914] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 32678, 85 32679, 64 32680, 217 64, 68 139, 247 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1310] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 57173, 48 57174, 92 57175, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1911] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 56986, 213 56987, 152 56988, 112 152, 51 3, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i653] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 38922, 57 38923, 154 38924, 171 43778, 57 44034, 46 38925, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3245] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 43087, 230 43088, 176 43089, 236 176, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i176] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 10762, 109 10763, 94 10764, 251 64350, 93 10765, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2437] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 49662, 196 49663, 129 49664, 159 129, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2806] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 10018, 73 10019, 170 10020, 160 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2307] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 14984, 236 14985, 170 14986, 132 33962, 64 14987, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2560] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 55139, 214 55140, 157 55141, 193 157, 60 191, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2681] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 4097, 222 4098, 221 4099, 68 17545, 155 17801, 219 4100, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2172] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 61844, 209 61845, 104 61846, 209 104, 121 105, 179 46031, 111 base: 104 lo: 121 hi: 179 deref_base: 45945 y_register: 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2040] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 45848, 221 45849, 135 45850, 252 64661, 253 45851, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2807] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 8256, 73 8257, 120 8258, 201 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3138] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 13258, 65 13259, 202 13260, 110 202, 252 251, 129 252, 76 19585, 102 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1311] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 47559, 48 47560, 253 47561, 15 47558, 97 flag N | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1024] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 51190, 30 51191, 71 51192, 127 32585, 103 51193, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2308] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 11971, 236 11972, 230 11973, 60 15590, 12 11974, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3246] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 58443, 230 58444, 108 58445, 123 108, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i348] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 20849, 97 20850, 106 20851, 174 106, 136 70, 70 71, 125 32070, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i654] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 41973, 57 41974, 43 41975, 124 31789, 233 41976, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1912] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 32486, 213 32487, 48 32488, 87 48, 204 204, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2915] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 52507, 85 52508, 54 52509, 149 54, 14 14, 26 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i277] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 29166, 121 29167, 229 29168, 87 22327, 227 22583, 138 29169, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i177] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 8067, 109 8068, 187 8069, 148 38075, 67 8070, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2438] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 12731, 196 12732, 217 12733, 189 217, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3029] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 13515, 93 13516, 160 13517, 44 11452, 162 13518, 153 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i729] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 42454, 33 42455, 237 42456, 244 237, 239 123, 247 124, 148 38135, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2561] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 20415, 214 20416, 192 20417, 24 192, 77 224, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2682] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 31916, 222 31917, 155 31918, 251 64292, 142 64548, 196 31919, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2916] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 46869, 85 46870, 210 46871, 9 210, 172 223, 138 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2808] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 46408, 73 46409, 175 46410, 96 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2173] | 0.58 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 36711, 209 36712, 79 36713, 54 79, 166 80, 67 17333, 46 base: 79 lo: 166 hi: 67 deref_base: 17318 y_register: 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1312] | 0.25 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 34446, 48 34447, 96 34448, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i178] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 56026, 109 56027, 171 56028, 141 36267, 158 56029, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2041] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 20267, 221 20268, 50 20269, 33 8457, 116 8713, 84 20270, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3247] | 0.32 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 10411, 230 10412, 173 10413, 155 173, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i655] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 59806, 57 59807, 161 59808, 92 23802, 90 59809, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i278] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 57632, 121 57633, 200 57634, 132 33927, 177 34183, 132 57635, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1025] | 0.59 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 2773, 30 2774, 161 2775, 229 58730, 204 58986, 183 2776, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1913] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 36715, 213 36716, 74 36717, 52 74, 148 42, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2439] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 42073, 196 42074, 19 42075, 30 19, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2309] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 38588, 236 38589, 239 38590, 112 28911, 108 38591, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json-i349] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/61.json 29616, 97 29617, 242 29618, 131 242, 55 1, 167 2, 220 56487, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2809] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 48719, 73 48720, 164 48721, 118 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3030] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 50750, 93 50751, 59 50752, 208 53256, 111 53512, 26 50753, 8 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3139] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 40590, 65 40591, 176 40592, 162 176, 241 224, 10 225, 145 37130, 165 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2562] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 43542, 214 43543, 94 43544, 203 94, 114 224, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1313] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 47744, 48 47745, 233 47746, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2683] | 0.56 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 18394, 222 18395, 179 18396, 228 58434, 233 58690, 72 18397, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3248] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 43485, 230 43486, 196 43487, 243 196, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i730] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 22210, 33 22211, 14 22212, 249 14, 122 15, 75 19322, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1914] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 15293, 213 15294, 154 15295, 72 154, 179 14, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2440] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 22181, 196 22182, 120 22183, 169 120, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2042] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 25404, 221 25405, 198 25406, 15 4043, 145 25407, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i279] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 44038, 121 44039, 56 44040, 22 5682, 118 5938, 69 44041, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i179] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 55460, 109 55461, 122 55462, 10 2682, 108 55463, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2917] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 60702, 85 60703, 140 60704, 238 140, 2 128, 90 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2810] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 17050, 73 17051, 73 17052, 221 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2310] | 0.36 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 16336, 236 16337, 153 16338, 136 34969, 18 16339, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1314] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 16343, 48 16344, 143 16345, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2174] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 52907, 209 52908, 63 52909, 75 63, 33 64, 235 60266, 150 base: 63 lo: 33 hi: 235 deref_base: 60193 y_register: 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i656] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 1459, 57 1460, 247 1461, 111 28517, 208 28773, 35 1462, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2563] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 44566, 214 44567, 212 44568, 97 212, 91 235, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3031] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 23901, 93 23902, 117 23903, 215 55090, 250 55346, 56 23904, 133 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3140] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 42010, 65 42011, 170 42012, 47 170, 234 238, 76 239, 58 14924, 232 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3249] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 5704, 230 5705, 249 5706, 70 249, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i350] | 0.44 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 62438, 113 62439, 84 62440, 124 84, 212 85, 57 14682, 16 14938, 204 base: 84 lo: 212 hi: 57 deref_base: 14804 y_register: 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1026] | 0.44 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 57514, 30 57515, 149 57516, 166 42639, 103 42895, 124 57517, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2811] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 49427, 73 49428, 47 49429, 38 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2441] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 24524, 196 24525, 14 24526, 134 14, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i280] | 0.51 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 62543, 121 62544, 231 62545, 179 45994, 182 46250, 76 62546, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i731] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 18444, 33 18445, 209 18446, 152 209, 29 175, 191 176, 204 52415, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2043] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 39032, 221 39033, 246 39034, 167 42867, 30 43123, 179 39035, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1915] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 45657, 213 45658, 88 45659, 71 88, 103 228, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2918] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 65416, 85 65417, 118 65418, 240 118, 237 31, 7 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i180] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 65155, 109 65156, 35 65157, 121 31011, 63 65158, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2684] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 23984, 222 23985, 219 23986, 39 10091, 70 10347, 112 23987, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json-i1315] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/30.json 55274, 48 55275, 40 55276, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2311] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 26496, 236 26497, 102 26498, 13 3430, 51 26499, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2175] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 49153, 209 49154, 228 49155, 34 228, 54 229, 54 14038, 209 base: 228 lo: 54 hi: 54 deref_base: 13878 y_register: 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2564] | 0.54 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 12659, 214 12660, 229 12661, 137 229, 146 186, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json-i657] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/39.json 36545, 57 36546, 29 36547, 203 52052, 123 36548, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2812] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 40719, 73 40720, 58 40721, 255 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3250] | 0.54 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 64111, 246 64112, 163 64113, 0 163, 38 136, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3032] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 44081, 93 44082, 167 44083, 134 34423, 13 34679, 176 44084, 128 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i181] | 0.49 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 14540, 109 14541, 155 14542, 208 53403, 77 14543, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3141] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 44503, 65 44504, 121 44505, 61 121, 121 89, 35 90, 136 34851, 224 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2442] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 3974, 196 3975, 253 3976, 70 253, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3350] | 0.49 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 11027, 254 11028, 230 11029, 245 62918, 109 63174, 158 11030, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i351] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 40949, 113 40950, 242 40951, 229 242, 247 243, 162 41638, 201 41894, 242 base: 242 lo: 247 hi: 162 deref_base: 41719 y_register: 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1027] | 0.44 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 14787, 30 14788, 221 14789, 82 21034, 126 21290, 232 14790, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2044] | 0.48 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 54703, 221 54704, 10 54705, 119 30714, 180 54706, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2312] | 0.57 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 42851, 236 42852, 207 42853, 78 20175, 99 42854, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i732] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 58715, 33 58716, 85 58717, 15 85, 37 176, 81 177, 131 33617, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2813] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 29573, 73 29574, 101 29575, 224 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1916] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 300, 213 301, 66 302, 217 66, 149 150, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2919] | 0.38 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 16404, 85 16405, 177 16406, 110 177, 107 75, 180 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2685] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 29939, 222 29940, 120 29941, 196 50319, 1 29942, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json-i281] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/79.json 15999, 121 16000, 141 16001, 165 42376, 34 42632, 75 16002, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3454] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 27737, 200 27738, 236 27739, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3033] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 29310, 93 29311, 181 29312, 244 62511, 201 62767, 90 29313, 116 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2176] | 0.53 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 64300, 209 64301, 235 64302, 128 235, 171 236, 126 32331, 226 32587, 255 base: 235 lo: 171 hi: 126 deref_base: 32427 y_register: 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2443] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 37701, 196 37702, 51 37703, 249 51, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1917] | 0.48 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 29917, 213 29918, 148 29919, 241 148, 169 97, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2565] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 4555, 214 4556, 218 4557, 99 218, 129 68, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i182] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 15676, 109 15677, 45 15678, 78 20013, 52 15679, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i352] | 0.54 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 11753, 113 11754, 138 11755, 149 138, 114 139, 218 55985, 141 base: 138 lo: 114 hi: 218 deref_base: 55922 y_register: 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2814] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 16833, 73 16834, 215 16835, 220 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3251] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 39685, 246 39686, 19 39687, 145 19, 236 116, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3455] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 37855, 200 37856, 151 37857, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1028] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 19813, 30 19814, 151 19815, 253 64964, 23 19816, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3351] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 63841, 254 63842, 225 63843, 41 10694, 184 10950, 225 63844, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2920] | 0.25 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 57373, 85 57374, 224 57375, 61 224, 129 106, 138 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2045] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 15616, 221 15617, 253 15618, 115 29586, 2 29842, 128 15619, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3142] | 0.54 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 34480, 65 34481, 228 34482, 197 228, 56 28, 170 29, 152 39082, 53 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2686] | 0.58 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 34635, 222 34636, 254 34637, 191 49024, 62 49280, 3 34638, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3555] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 40387, 108 40388, 171 40389, 125 32171, 220 32172, 194 49884, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i733] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 10643, 33 10644, 41 10645, 65 41, 66 24, 133 25, 20 5253, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2815] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 4710, 73 4711, 122 4712, 197 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2313] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 46689, 236 46690, 246 46691, 68 17654, 60 46692, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3034] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 26815, 93 26816, 53 26817, 14 3615, 219 3871, 46 26818, 78 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2444] | 0.20 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 37805, 196 37806, 107 37807, 59 107, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2921] | 0.54 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 13885, 85 13886, 23 13887, 203 23, 3 190, 86 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3456] | 0.19 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 25459, 200 25460, 83 25461, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i183] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 34424, 109 34425, 51 34426, 27 6963, 56 34427, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2566] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 12627, 214 12628, 62 12629, 174 62, 186 248, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1029] | 0.50 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 1967, 30 1968, 92 1969, 197 50517, 68 50773, 150 1970, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2177] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 36706, 209 36707, 99 36708, 250 99, 201 100, 178 45667, 136 45923, 68 base: 99 lo: 201 hi: 178 deref_base: 45769 y_register: 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1918] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 28834, 213 28835, 221 28836, 225 221, 56 183, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3252] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 49789, 246 49790, 151 49791, 167 151, 148 193, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3352] | 0.54 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 51722, 254 51723, 90 51724, 234 60135, 132 51725, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2046] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 28162, 221 28163, 145 28164, 16 4315, 14 28165, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2816] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 16006, 73 16007, 213 16008, 241 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2314] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 28009, 236 28010, 156 28011, 159 40860, 180 28012, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i353] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 63088, 113 63089, 44 63090, 127 44, 23 45, 164 42106, 9 base: 44 lo: 23 hi: 164 deref_base: 42007 y_register: 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2445] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 2728, 196 2729, 85 2730, 132 85, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3457] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 41652, 200 41653, 114 41654, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3556] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 64633, 108 64634, 108 64635, 10 2668, 182 2669, 37 9654, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3035] | 0.51 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 47615, 93 47616, 19 47617, 232 59462, 209 47618, 148 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3143] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 54998, 65 54999, 68 55000, 114 68, 66 69, 94 24130, 4 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2817] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 6969, 73 6970, 93 6971, 134 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i734] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 19954, 33 19955, 21 19956, 76 21, 91 27, 248 28, 8 2296, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2687] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 22471, 222 22472, 93 22473, 230 59015, 217 22474, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2567] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 44512, 214 44513, 176 44514, 98 176, 38 18, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i184] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 21077, 109 21078, 119 21079, 186 47735, 12 21080, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2178] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 59508, 209 59509, 142 59510, 78 142, 143 143, 235 60248, 105 60504, 154 base: 142 lo: 143 hi: 235 deref_base: 60303 y_register: 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2446] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 1362, 196 1363, 20 1364, 165 20, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3253] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 55842, 246 55843, 109 55844, 180 109, 155 2, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1919] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 32595, 213 32596, 18 32597, 169 18, 89 63, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3458] | 0.20 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 60044, 200 60045, 249 60046, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2922] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 8532, 85 8533, 37 8534, 18 37, 74 21, 193 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2047] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 54478, 221 54479, 203 54480, 65 16741, 107 16997, 233 54481, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1030] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 33047, 30 33048, 148 33049, 191 49027, 237 49283, 121 33050, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2315] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 42419, 236 42420, 206 42421, 187 48078, 123 42422, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i354] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 59707, 113 59708, 41 59709, 103 41, 211 42, 81 20792, 106 21048, 105 base: 41 lo: 211 hi: 81 deref_base: 20947 y_register: 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3557] | 0.56 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 24343, 108 24344, 46 24345, 95 24366, 110 24367, 109 28014, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3353] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 12036, 254 12037, 2 12038, 73 18838, 104 12039, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2818] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 35216, 73 35217, 236 35218, 79 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i185] | 0.46 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 7834, 109 7835, 71 7836, 222 56903, 239 7837, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3459] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 64675, 200 64676, 208 64677, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3144] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 19718, 65 19719, 206 19720, 44 206, 253 64, 52 65, 187 47924, 69 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i735] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 51528, 33 51529, 198 51530, 137 198, 145 171, 242 172, 108 27890, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2568] | 0.51 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 14761, 214 14762, 224 14763, 49 224, 174 92, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3036] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 57279, 93 57280, 127 57281, 176 45117, 106 45373, 31 57282, 207 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2688] | 0.55 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 34069, 222 34070, 85 34071, 213 54702, 148 34072, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2447] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 11379, 196 11380, 123 11381, 135 123, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2179] | 0.55 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 27493, 209 27494, 217 27495, 75 217, 127 218, 68 17600, 90 base: 217 lo: 127 hi: 68 deref_base: 17535 y_register: 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3254] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 10246, 246 10247, 189 10248, 72 189, 126 70, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2819] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 3068, 73 3069, 111 3070, 75 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2923] | 0.38 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 5756, 85 5757, 243 5758, 241 243, 16 36, 31 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1920] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 22502, 213 22503, 61 22504, 209 61, 248 68, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2048] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 18701, 221 18702, 96 18703, 132 33955, 255 18704, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2316] | 0.24 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 30241, 236 30242, 77 30243, 1 333, 148 30244, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1031] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 5052, 30 5053, 19 5054, 67 17225, 149 5055, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i355] | 0.61 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 48732, 113 48733, 5 48734, 128 5, 82 6, 104 26661, 24 26917, 133 base: 5 lo: 82 hi: 104 deref_base: 26706 y_register: 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3354] | 0.53 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 60333, 254 60334, 86 60335, 64 16419, 204 16675, 171 60336, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3460] | 0.20 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 27502, 200 27503, 109 27504, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1500] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 45493, 80 45494, 40 45495, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1921] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 13078, 213 13079, 18 13080, 25 18, 106 99, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i186] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 23557, 109 23558, 44 23559, 206 52780, 77 23560, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2820] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 58222, 73 58223, 35 58224, 243 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2448] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 21460, 196 21461, 48 21462, 236 48, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3558] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 13783, 108 13784, 217 13785, 144 37081, 163 37082, 233 59811, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3037] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 15858, 93 15859, 82 15860, 106 27386, 147 15861, 255 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3145] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 30295, 65 30296, 204 30297, 182 204, 130 12, 219 13, 149 38363, 83 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3461] | 0.29 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 33068, 200 33069, 82 33070, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2317] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 6670, 236 6671, 82 6672, 22 5714, 16 6673, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2924] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 61324, 85 61325, 178 61326, 51 178, 151 247, 171 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2049] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 5965, 221 5966, 153 5967, 138 35388, 121 35644, 112 5968, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1501] | 0.31 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 2812, 80 2813, 162 2814, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2569] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 29665, 214 29666, 90 29667, 64 90, 218 221, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i736] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 39074, 33 39075, 105 39076, 143 105, 147 87, 137 88, 39 10121, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3255] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 36254, 246 36255, 216 36256, 7 216, 63 77, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2689] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 47660, 222 47661, 98 47662, 144 37084, 20 47663, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2821] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 6513, 73 6514, 5 6515, 133 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2180] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 54675, 209 54676, 167 54677, 13 167, 133 168, 140 35886, 231 36142, 227 base: 167 lo: 133 hi: 140 deref_base: 35973 y_register: 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1032] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 7682, 30 7683, 55 7684, 164 42085, 249 7685, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2449] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 54363, 196 54364, 69 54365, 60 69, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3462] | 0.24 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 36181, 200 36182, 125 36183, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3355] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 3579, 254 3580, 163 3581, 66 16993, 128 17249, 127 3582, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json-i187] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6d.json 2712, 109 2713, 198 2714, 185 47558, 130 2715, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3038] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 62321, 93 62322, 162 62323, 148 38011, 69 38267, 194 62324, 173 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3559] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 52757, 108 52758, 187 52759, 54 14011, 58 14012, 206 52794, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1502] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 56603, 80 56604, 114 56605, 192 56719, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i356] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 4338, 113 4339, 20 4340, 198 20, 160 21, 5 1380, 95 1636, 87 base: 20 lo: 160 hi: 5 deref_base: 1440 y_register: 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1922] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 37351, 213 37352, 51 37353, 152 51, 209 224, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2925] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 36438, 85 36439, 126 36440, 92 126, 93 226, 238 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2050] | 0.53 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 65361, 217 65362, 166 65363, 68 17477, 82 17733, 138 65364, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2570] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 27436, 214 27437, 48 27438, 159 48, 42 233, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3146] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 28605, 65 28606, 139 28607, 44 139, 244 120, 67 121, 28 7235, 106 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2318] | 0.39 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 27032, 236 27033, 140 27034, 110 28300, 210 27035, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2822] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 55655, 73 55656, 201 55657, 150 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2450] | 0.47 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 41666, 204 41667, 191 41668, 155 39871, 90 41669, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3256] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 15326, 246 15327, 112 15328, 58 112, 157 199, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3463] | 0.30 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 61904, 200 61905, 31 61906, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i737] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 30135, 33 30136, 135 30137, 4 135, 17 38, 60 39, 73 18748, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2690] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 37801, 222 37802, 137 37803, 212 54326, 114 54582, 235 37804, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2181] | 0.56 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 48551, 209 48552, 193 48553, 11 193, 93 194, 44 11453, 111 base: 193 lo: 93 hi: 44 deref_base: 11357 y_register: 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json-i1503] | 0.31 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/50.json 25873, 80 25874, 61 25875, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2926] | 0.52 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 31535, 85 31536, 143 31537, 0 143, 232 109, 123 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2823] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 56698, 73 56699, 120 56700, 116 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json-i1033] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1e.json 3147, 30 3148, 100 3149, 206 52855, 198 3150, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3356] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 24330, 254 24331, 255 24332, 85 21807, 149 22063, 183 24333, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3560] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 25896, 108 25897, 172 25898, 136 34988, 250 34989, 195 50170, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3653] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 31258, 169 31259, 1 31260, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3039] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 12972, 93 12973, 111 12974, 7 1948, 141 12975, 127 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2571] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 10632, 214 10633, 75 10634, 205 75, 147 170, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i357] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 53320, 113 53321, 176 53322, 169 176, 157 177, 228 58434, 188 58690, 7 base: 176 lo: 157 hi: 228 deref_base: 58525 y_register: 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1923] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 39517, 213 39518, 235 39519, 253 235, 218 212, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3464] | 0.19 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 39029, 200 39030, 40 39031, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2319] | 0.24 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 14629, 236 14630, 210 14631, 80 20690, 98 14632, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3749] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 19201, 165 19202, 223 19203, 173 223, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i738] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 3998, 33 3999, 121 4000, 253 121, 236 138, 156 139, 232 59548, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3257] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 17266, 246 17267, 46 17268, 249 46, 217 43, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2691] | 0.55 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 50653, 222 50654, 64 50655, 81 20830, 156 50656, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2051] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 59945, 217 59946, 169 59947, 40 10329, 224 10585, 66 59948, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2451] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 7528, 204 7529, 245 7530, 230 59125, 12 7531, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3654] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 36426, 169 36427, 6 36428, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3147] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 48470, 65 48471, 87 48472, 86 87, 143 8, 158 9, 155 39838, 72 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2824] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 4606, 73 4607, 3 4608, 92 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3465] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 16526, 200 16527, 236 16528, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3040] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 40810, 93 40811, 78 40812, 207 53119, 137 40813, 12 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3357] | 0.51 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 14095, 254 14096, 185 14097, 221 56595, 78 56851, 212 14098, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2182] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 18393, 209 18394, 195 18395, 6 195, 161 196, 99 25403, 210 25659, 131 base: 195 lo: 161 hi: 99 deref_base: 25505 y_register: 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2320] | 0.46 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 33158, 236 33159, 227 33160, 225 57827, 183 33161, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2927] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 21685, 85 21686, 105 21687, 147 105, 67 15, 70 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3655] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 59453, 169 59454, 14 59455, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2572] | 0.48 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 47597, 214 47598, 114 47599, 16 114, 3 71, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1924] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 27441, 213 27442, 214 27443, 50 214, 78 190, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i358] | 0.49 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 8780, 113 8781, 134 8782, 155 134, 199 135, 175 44974, 64 45230, 46 base: 134 lo: 199 hi: 175 deref_base: 44999 y_register: 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2825] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 22967, 73 22968, 187 22969, 52 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3843] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 61671, 173 61672, 96 61673, 179 45920, 180 61674, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3750] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 27808, 181 27809, 109 27810, 126 109, 139 225, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3561] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 8346, 108 8347, 209 8348, 34 8913, 243 8914, 131 33779, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2452] | 0.47 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 64832, 204 64833, 93 64834, 60 15453, 224 64835, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3258] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 43705, 246 43706, 189 43707, 109 189, 232 55, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3466] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 14486, 200 14487, 121 14488, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2052] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 52612, 217 52613, 134 52614, 173 44359, 69 44615, 27 52615, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i739] | 0.56 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 51878, 33 51879, 92 51880, 4 92, 137 122, 167 123, 190 48807, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3148] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 55300, 65 55301, 158 55302, 101 158, 49 80, 58 81, 192 49210, 20 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3041] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 26416, 93 26417, 167 26418, 238 61125, 90 26419, 45 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2692] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 59874, 222 59875, 169 59876, 229 58794, 211 59877, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2928] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 27951, 85 27952, 38 27953, 224 38, 115 210, 121 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3656] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 10967, 169 10968, 227 10969, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2826] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 25610, 73 25611, 203 25612, 8 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2183] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 22994, 209 22995, 72 22996, 13 72, 67 73, 176 45307, 16 base: 72 lo: 67 hi: 176 deref_base: 45123 y_register: 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3467] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 38816, 200 38817, 145 38818, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2321] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 52988, 236 52989, 62 52990, 173 44350, 196 52991, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3751] | 0.32 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 26654, 181 26655, 132 26656, 42 132, 94 6, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1925] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 37751, 213 37752, 228 37753, 149 228, 78 8, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3358] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 13782, 254 13783, 80 13784, 127 32733, 70 13785, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3844] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 65312, 173 65313, 50 65314, 186 47666, 57 65315, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2573] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 4558, 214 4559, 136 4560, 166 136, 5 53, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3562] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 13221, 108 13222, 46 13223, 20 5166, 104 5167, 251 64360, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i359] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 47588, 113 47589, 241 47590, 88 241, 19 242, 56 14425, 128 base: 241 lo: 19 hi: 56 deref_base: 14355 y_register: 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3657] | 0.27 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 17943, 169 17944, 97 17945, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3259] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 31430, 246 31431, 0 31432, 243 0, 59 124, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2453] | 0.28 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 53710, 204 53711, 152 53712, 3 920, 117 53713, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2053] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 61301, 217 61302, 49 61303, 243 62426, 17 61304, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2929] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 29077, 85 29078, 116 29079, 121 116, 145 70, 178 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2827] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 8213, 73 8214, 178 8215, 155 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1926] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 16438, 213 16439, 178 16440, 99 178, 60 166, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3149] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 47037, 65 47038, 247 47039, 182 247, 41 178, 32 179, 49 12576, 232 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2693] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 14598, 222 14599, 188 14600, 181 46390, 200 46646, 195 14601, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3042] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 17901, 93 17902, 86 17903, 95 24376, 164 24632, 10 17904, 21 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3752] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 30542, 181 30543, 77 30544, 226 77, 211 111, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3468] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 23627, 200 23628, 189 23629, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i740] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 34161, 33 34162, 236 34163, 155 236, 26 208, 67 209, 151 38723, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2322] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 51163, 236 51164, 0 51165, 221 56576, 3 51166, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3658] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 26617, 169 26618, 153 26619, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3359] | 0.53 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 49618, 254 49619, 181 49620, 206 52857, 211 53113, 60 49621, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2454] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 32866, 204 32867, 6 32868, 209 53510, 150 32869, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2184] | 0.54 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 18626, 209 18627, 58 18628, 44 58, 198 59, 213 54734, 97 base: 58 lo: 198 hi: 213 deref_base: 54726 y_register: 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3845] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 6380, 173 6381, 102 6382, 142 36454, 198 6383, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3260] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 5691, 246 5692, 29 5693, 198 29, 50 165, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2574] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 39343, 214 39344, 224 39345, 115 224, 165 232, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2828] | 0.18 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 57415, 73 57416, 16 57417, 94 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3563] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 12500, 108 12501, 221 12502, 63 16349, 255 16350, 102 26367, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i360] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 41949, 113 41950, 224 41951, 35 224, 172 225, 42 10814, 130 11070, 35 base: 224 lo: 172 hi: 42 deref_base: 10924 y_register: 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3469] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 52160, 200 52161, 162 52162, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2054] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 6147, 217 6148, 215 6149, 203 52119, 108 52375, 6 6150, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3659] | 0.30 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 26631, 169 26632, 180 26633, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2930] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 15004, 85 15005, 203 15006, 188 203, 101 24, 9 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2829] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 54139, 73 54140, 137 54141, 62 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2694] | 0.54 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 34855, 222 34856, 218 34857, 113 28983, 42 29239, 53 34858, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3753] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 54067, 181 54068, 207 54069, 143 207, 111 235, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3043] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 8178, 93 8179, 204 8180, 226 57870, 48 58126, 68 8181, 255 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1927] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 25828, 213 25829, 70 25830, 122 70, 113 88, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2323] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 209, 236 210, 161 211, 23 6049, 5 212, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3470] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 60658, 200 60659, 128 60660, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i741] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 18374, 33 18375, 226 18376, 8 226, 255 231, 116 232, 219 56180, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3150] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 48865, 81 48866, 68 48867, 153 68, 178 69, 45 11579, 22 11835, 16 base: 68 lo: 178 hi: 45 deref_base: 11698 y_register: 137 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3846] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 23250, 173 23251, 193 23252, 10 2753, 254 23253, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2575] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 58863, 214 58864, 90 58865, 57 90, 215 98, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3564] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 33782, 108 33783, 251 33784, 157 40443, 126 40444, 192 49278, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2455] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 38998, 204 38999, 174 39000, 235 60334, 82 39001, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3360] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 54146, 254 54147, 119 54148, 175 44885, 227 45141, 98 54149, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2055] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 53754, 217 53755, 210 53756, 113 28951, 202 29207, 244 53757, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3660] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 50826, 169 50827, 71 50828, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2185] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 37152, 209 37153, 109 37154, 138 109, 184 110, 20 5181, 102 5437, 212 base: 109 lo: 184 hi: 20 deref_base: 5304 y_register: 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3261] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 47030, 246 47031, 108 47032, 49 108, 172 205, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2830] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 27964, 73 27965, 247 27966, 128 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i361] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 15314, 113 15315, 11 15316, 118 11, 153 12, 2 567, 104 823, 20 base: 11 lo: 153 hi: 2 deref_base: 665 y_register: 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3471] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 23315, 200 23316, 21 23317, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3754] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 11517, 181 11518, 77 11519, 136 77, 250 184, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2324] | 0.46 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 31866, 236 31867, 113 31868, 87 22385, 7 31869, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2931] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 49778, 85 49779, 51 49780, 85 51, 140 66, 59 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3847] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 15273, 173 15274, 13 15275, 148 37901, 78 15276, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3044] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 33275, 93 33276, 189 33277, 148 38081, 146 33278, 178 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1928] | 0.29 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 63333, 213 63334, 246 63335, 66 246, 4 192, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3661] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 38337, 169 38338, 94 38339, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3151] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 61031, 81 61032, 244 61033, 105 244, 50 245, 236 60458, 190 60714, 149 base: 244 lo: 50 hi: 236 deref_base: 60466 y_register: 248 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2831] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 42172, 73 42173, 149 42174, 216 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2695] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 62116, 222 62117, 67 62118, 102 26201, 5 62119, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i742] | 0.48 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 35488, 33 35489, 19 35490, 152 19, 187 195, 215 196, 220 56535, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2576] | 0.50 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 41844, 214 41845, 57 41846, 11 57, 180 145, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3565] | 0.49 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 28986, 108 28987, 13 28988, 30 7693, 232 7694, 38 9960, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2456] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 18154, 204 18155, 87 18156, 221 56663, 87 18157, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2056] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 27571, 217 27572, 9 27573, 76 19521, 69 27574, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3755] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 51782, 181 51783, 16 51784, 240 16, 181 143, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3361] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 9192, 254 9193, 43 9194, 198 50865, 93 9195, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3472] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 52545, 200 52546, 113 52547, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3262] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 27251, 246 27252, 11 27253, 56 11, 129 142, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2186] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 17450, 209 17451, 65 17452, 147 65, 173 66, 158 40556, 134 40812, 51 base: 65 lo: 173 hi: 158 deref_base: 40621 y_register: 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1929] | 0.48 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 51685, 213 51686, 159 51687, 136 159, 190 55, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i362] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 47823, 113 47824, 93 47825, 251 93, 11 94, 157 40373, 153 base: 93 lo: 11 hi: 157 deref_base: 40203 y_register: 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3045] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 14254, 93 14255, 150 14256, 247 63448, 165 14257, 39 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2932] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 25818, 85 25819, 44 25820, 176 44, 225 226, 112 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2325] | 0.39 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 34735, 236 34736, 63 34737, 172 44095, 26 34738, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3662] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 42147, 169 42148, 187 42149, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2832] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 47976, 73 47977, 169 47978, 202 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3848] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 63569, 173 63570, 4 63571, 32 8196, 187 63572, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3473] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 6688, 200 6689, 235 6690, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2696] | 0.59 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 64258, 222 64259, 133 64260, 55 14261, 96 64261, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2933] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 38571, 85 38572, 22 38573, 176 22, 81 227, 132 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3663] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 61645, 169 61646, 72 61647, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i743] | 0.57 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 35458, 33 35459, 218 35460, 163 218, 96 110, 28 111, 118 30236, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3152] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 55483, 81 55484, 230 55485, 113 230, 34 231, 228 58554, 46 base: 230 lo: 34 hi: 228 deref_base: 58402 y_register: 152 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2057] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 59570, 217 59571, 159 59572, 6 1599, 100 1855, 79 59573, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2457] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 21198, 204 21199, 1 21200, 123 31489, 110 21201, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2577] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 15395, 214 15396, 174 15397, 189 174, 88 104, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3362] | 0.54 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 50202, 254 50203, 146 50204, 231 59338, 143 50205, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3566] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 58911, 108 58912, 126 58913, 130 33406, 215 33407, 89 22999, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3756] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 3863, 181 3864, 92 3865, 177 92, 176 227, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2833] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 13353, 73 13354, 104 13355, 209 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3046] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 41672, 93 41673, 128 41674, 28 7258, 29 7514, 212 41675, 211 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3263] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 60290, 246 60291, 43 60292, 13 43, 110 140, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2187] | 0.52 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 47994, 209 47995, 245 47996, 215 245, 204 246, 26 6877, 211 base: 245 lo: 204 hi: 26 deref_base: 6860 y_register: 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1930] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 34009, 213 34010, 235 34011, 156 235, 37 74, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2326] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 60720, 236 60721, 67 60722, 206 52803, 45 60723, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3849] | 0.24 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 8124, 173 8125, 190 8126, 88 22718, 113 8127, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3474] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 48961, 200 48962, 118 48963, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i363] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 13883, 113 13884, 149 13885, 251 149, 250 150, 173 44407, 139 44663, 10 base: 149 lo: 250 hi: 173 deref_base: 44538 y_register: 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2458] | 0.52 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 20486, 204 20487, 41 20488, 165 42281, 191 20489, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3664] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 46595, 169 46596, 15 46597, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3757] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 51110, 181 51111, 126 51112, 217 126, 124 68, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2834] | 0.17 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 9982, 73 9983, 121 9984, 104 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2934] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 63174, 85 63175, 163 63176, 11 163, 180 126, 175 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3047] | 0.50 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 26604, 93 26605, 202 26606, 178 45812, 210 26607, 129 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3475] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 28317, 200 28318, 146 28319, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3153] | 0.55 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 55725, 81 55726, 133 55727, 17 133, 211 134, 232 59425, 189 59681, 113 base: 133 lo: 211 hi: 232 deref_base: 59603 y_register: 78 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2058] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 56146, 217 56147, 130 56148, 212 54311, 18 54567, 182 56149, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3850] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 9514, 189 9515, 72 9516, 23 6056, 41 9517, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3567] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 54535, 108 54536, 93 54537, 156 40029, 245 40030, 0 245, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2578] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 10049, 214 10050, 192 10051, 66 192, 76 233, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2697] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 26035, 222 26036, 92 26037, 31 8087, 196 26038, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3264] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 63244, 246 63245, 145 63246, 153 145, 3 104, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3665] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 22763, 169 22764, 147 22765, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2835] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 25537, 73 25538, 202 25539, 47 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i744] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 59894, 33 59895, 66 59896, 202 66, 39 187, 234 188, 23 6122, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2327] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 6465, 236 6466, 90 6467, 158 40538, 219 6468, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3363] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 11018, 254 11019, 158 11020, 122 31487, 94 11021, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1931] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 11641, 213 11642, 114 11643, 172 114, 99 93, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2188] | 0.44 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 24932, 209 24933, 109 24934, 252 109, 198 110, 241 61813, 155 62069, 149 base: 109 lo: 198 hi: 241 deref_base: 61894 y_register: 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i364] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 54468, 113 54469, 48 54470, 201 48, 75 49, 132 33964, 69 base: 48 lo: 75 hi: 132 deref_base: 33867 y_register: 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3476] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 30754, 200 30755, 29 30756, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3758] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 34058, 181 34059, 224 34060, 202 224, 204 233, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2459] | 0.41 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 525, 204 526, 108 527, 165 42348, 18 528, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2935] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 35661, 85 35662, 61 35663, 209 61, 173 229, 251 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2059] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 34454, 217 34455, 200 34456, 162 41592, 217 41848, 170 34457, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2579] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 7604, 214 7605, 81 7606, 117 81, 80 63, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3666] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 21829, 169 21830, 187 21831, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2836] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 32651, 73 32652, 128 32653, 247 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3265] | 0.49 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 27095, 246 27096, 200 27097, 43 200, 52 158, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2698] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 43904, 222 43905, 32 43906, 185 47389, 244 47645, 61 43907, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3851] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 32344, 189 32345, 188 32346, 34 8924, 219 32347, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3048] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 24420, 93 24421, 122 24422, 86 22141, 146 24423, 114 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3477] | 0.20 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 6812, 200 6813, 145 6814, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3154] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 34957, 81 34958, 134 34959, 72 134, 229 135, 58 14985, 114 15241, 200 base: 134 lo: 229 hi: 58 deref_base: 15077 y_register: 164 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3364] | 0.55 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 25026, 254 25027, 158 25028, 25 6649, 90 25029, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3568] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 25584, 108 25585, 115 25586, 21 5491, 122 5492, 147 37754, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i745] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 17230, 33 17231, 74 17232, 4 74, 250 227, 83 228, 16 4179, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2328] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 13241, 236 13242, 134 13243, 135 34694, 145 13244, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i365] | 0.58 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 10767, 113 10768, 189 10769, 201 189, 35 190, 191 49120, 153 base: 189 lo: 35 hi: 191 deref_base: 48931 y_register: 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2189] | 0.62 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 64735, 209 64736, 193 64737, 132 193, 126 194, 4 1220, 35 base: 193 lo: 126 hi: 4 deref_base: 1150 y_register: 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1932] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 22883, 213 22884, 236 22885, 147 236, 47 225, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3667] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 4077, 169 4078, 117 4079, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2837] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 17418, 73 17419, 64 17420, 41 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3478] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 32794, 200 32795, 81 32796, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2460] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 56076, 204 56077, 172 56078, 236 60588, 79 56079, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3759] | 0.28 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 47817, 181 47818, 59 47819, 25 59, 129 18, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2329] | 0.53 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 65087, 236 65088, 188 65089, 40 10428, 13 65090, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2936] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 36049, 85 36050, 238 36051, 125 238, 123 246, 4 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2580] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 49949, 214 49950, 127 49951, 23 127, 118 156, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2060] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 22598, 217 22599, 38 22600, 253 64861, 27 22601, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3852] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 41376, 189 41377, 245 41378, 186 47726, 151 47982, 192 41379, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2699] | 0.57 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 5453, 222 5454, 129 5455, 177 45456, 238 5456, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1933] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 28759, 213 28760, 217 28761, 171 217, 197 228, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3049] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 32710, 93 32711, 236 32712, 250 64179, 186 64435, 105 32713, 198 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3266] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 23392, 246 23393, 22 23394, 157 22, 66 197, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3155] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 63192, 81 63193, 2 63194, 93 2, 189 3, 117 30104, 173 30360, 253 base: 2 lo: 189 hi: 117 deref_base: 30141 y_register: 219 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3668] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 63728, 169 63729, 107 63730, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3569] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 55979, 108 55980, 142 55981, 40 10382, 66 10383, 153 39234, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2838] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 40613, 73 40614, 202 40615, 120 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i746] | 0.56 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 2934, 33 2935, 19 2936, 197 19, 231 129, 235 130, 60 15595, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3479] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 14664, 200 14665, 2 14666, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3760] | 0.51 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 50710, 181 50711, 210 50712, 61 210, 154 204, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3365] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 28457, 254 28458, 215 28459, 125 32018, 206 32274, 164 28460, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2461] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 31801, 204 31802, 146 31803, 124 31890, 181 31804, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i366] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 27459, 113 27460, 159 27461, 140 159, 186 160, 232 59462, 234 59718, 233 base: 159 lo: 186 hi: 232 deref_base: 59578 y_register: 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3669] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 16368, 169 16369, 3 16370, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2839] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 64601, 73 64602, 139 64603, 39 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2937] | 0.25 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 25656, 85 25657, 235 25658, 11 235, 191 118, 104 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2190] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 11201, 209 11202, 171 11203, 149 171, 73 172, 36 9228, 129 9484, 146 base: 171 lo: 73 hi: 36 deref_base: 9289 y_register: 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2061] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 26638, 217 26639, 115 26640, 184 47315, 85 26641, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3853] | 0.31 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 26301, 189 26302, 247 26303, 248 63701, 63 63957, 182 26304, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3480] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 42629, 200 42630, 6 42631, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2581] | 0.48 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 4055, 214 4056, 181 4057, 134 181, 230 207, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3050] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 65404, 89 65405, 105 65406, 246 63168, 207 65407, 146 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2330] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 44185, 236 44186, 73 44187, 76 19529, 222 44188, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3267] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 24007, 246 24008, 248 24009, 216 248, 162 197, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1934] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 15882, 213 15883, 133 15884, 253 133, 150 160, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3570] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 15483, 108 15484, 134 15485, 223 57222, 139 57223, 130 33419, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2700] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 50841, 202 50842, 60 50843, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2938] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 31848, 85 31849, 121 31850, 118 121, 175 172, 195 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3156] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 20708, 81 20709, 112 20710, 28 112, 229 113, 243 62302, 176 62558, 21 base: 112 lo: 229 hi: 243 deref_base: 62437 y_register: 121 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3670] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 31316, 169 31317, 27 31318, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3366] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 35239, 254 35240, 248 35241, 136 34940, 67 35196, 209 35242, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2462] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 36321, 204 36322, 39 36323, 4 1063, 60 36324, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2840] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 12855, 73 12856, 200 12857, 195 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3761] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 37109, 181 37110, 177 37111, 157 177, 60 68, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i747] | 0.59 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 15453, 33 15454, 196 15455, 232 196, 143 254, 153 255, 5 1433, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3854] | 0.60 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 12249, 189 12250, 81 12251, 120 30859, 189 12252, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3481] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 13596, 200 13597, 226 13598, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i367] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 41078, 113 41079, 24 41080, 192 24, 167 25, 195 50014, 24 50270, 231 base: 24 lo: 167 hi: 195 deref_base: 50087 y_register: 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2191] | 0.47 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 28493, 209 28494, 86 28495, 155 86, 2 87, 225 57710, 32 base: 86 lo: 2 hi: 225 deref_base: 57602 y_register: 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2062] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 57487, 217 57488, 125 57489, 197 50491, 171 50747, 241 57490, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2701] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 20325, 202 20326, 226 20327, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3051] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 63202, 89 63203, 232 63204, 210 53824, 135 54080, 204 63205, 4 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2331] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 1124, 236 1125, 62 1126, 169 43326, 0 1127, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3671] | 0.27 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 38283, 169 38284, 207 38285, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3268] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 46335, 246 46336, 16 46337, 99 16, 4 168, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2582] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 31307, 214 31308, 158 31309, 147 158, 135 149, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2841] | 0.29 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 21400, 73 21401, 112 21402, 199 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3571] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 37187, 108 37188, 26 37189, 195 49946, 164 49947, 173 44452, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2463] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 9662, 204 9663, 113 9664, 48 12401, 32 9665, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1935] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 62040, 213 62041, 247 62042, 56 247, 134 94, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3482] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 59525, 200 59526, 193 59527, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2702] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 31358, 202 31359, 190 31360, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3157] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 7048, 81 7049, 11 7050, 180 11, 74 12, 130 33345, 34 33601, 111 base: 11 lo: 74 hi: 130 deref_base: 33354 y_register: 247 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2939] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 17268, 85 17269, 86 17270, 100 86, 91 142, 140 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3762] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 2477, 181 2478, 180 2479, 36 180, 232 167, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3367] | 0.54 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 15354, 254 15355, 131 15356, 79 20329, 42 20585, 146 15357, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2332] | 0.53 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 33119, 236 33120, 99 33121, 110 28259, 116 33122, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3672] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 17705, 169 17706, 137 17707, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2063] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 39333, 217 39334, 152 39335, 73 18694, 129 18950, 175 39336, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2842] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 59576, 73 59577, 2 59578, 75 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2192] | 0.57 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 46393, 209 46394, 64 46395, 130 64, 18 65, 145 37177, 144 base: 64 lo: 18 hi: 145 deref_base: 37138 y_register: 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3483] | 0.20 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 48424, 200 48425, 13 48426, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3052] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 17017, 89 17018, 199 17019, 36 9438, 114 17020, 74 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i368] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 28715, 113 28716, 22 28717, 20 22, 38 23, 24 6200, 62 base: 22 lo: 38 hi: 24 deref_base: 6182 y_register: 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3572] | 0.52 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 29689, 108 29690, 249 29691, 133 34297, 250 34298, 198 50938, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i748] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 6751, 33 6752, 135 6753, 114 135, 54 189, 10 190, 3 778, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2583] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 41306, 214 41307, 207 41308, 255 207, 148 182, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3855] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 31074, 189 31075, 254 31076, 246 63148, 53 63404, 127 31077, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3269] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 28294, 246 28295, 87 28296, 218 87, 106 249, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3763] | 0.53 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 17643, 181 17644, 211 17645, 74 211, 84 92, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1936] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 49162, 213 49163, 144 49164, 136 144, 211 160, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2703] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 35788, 202 35789, 61 35790, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3673] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 20732, 169 20733, 54 20734, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2843] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 43108, 73 43109, 44 43110, 121 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2464] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 53170, 204 53171, 237 53172, 251 64493, 200 53173, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3484] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 7757, 200 7758, 209 7759, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3158] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 4299, 81 4300, 244 4301, 50 244, 38 245, 247 63301, 96 base: 244 lo: 38 hi: 247 deref_base: 63270 y_register: 31 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2940] | 0.25 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 16378, 85 16379, 6 16380, 39 6, 242 63, 169 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2704] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 45478, 202 45479, 161 45480, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3053] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 25408, 89 25409, 74 25410, 168 43018, 73 43274, 54 25411, 76 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3368] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 18533, 254 18534, 218 18535, 66 17080, 115 17336, 26 18536, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2333] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 6346, 236 6347, 169 6348, 73 18857, 144 6349, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i369] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 6710, 113 6711, 76 6712, 122 76, 42 77, 15 3993, 119 base: 76 lo: 42 hi: 15 deref_base: 3882 y_register: 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3856] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 48162, 189 48163, 82 48164, 90 23286, 254 48165, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2584] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 34928, 214 34929, 114 34930, 42 114, 196 34, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3270] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 20764, 246 20765, 206 20766, 159 206, 108 199, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2064] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 27368, 217 27369, 8 27370, 157 40323, 49 27371, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2844] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 40102, 73 40103, 5 40104, 38 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3674] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 284, 169 285, 251 286, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1937] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 5796, 213 5797, 245 5798, 74 245, 195 31, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json-i749] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/21.json 453, 33 454, 31 455, 122 31, 238 10, 254 11, 70 18174, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3485] | 0.20 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 2352, 200 2353, 124 2354, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2941] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 7598, 85 7599, 97 7600, 68 97, 250 33, 118 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2193] | 0.43 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 29959, 209 29960, 214 29961, 39 214, 180 215, 200 51209, 39 51465, 72 base: 214 lo: 180 hi: 200 deref_base: 51380 y_register: 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3573] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 42909, 108 42910, 13 42911, 119 30477, 14 30478, 61 15630, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2465] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 51987, 204 51988, 194 51989, 4 1218, 211 51990, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3764] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 63094, 181 63095, 53 63096, 29 53, 245 247, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2705] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 24465, 202 24466, 114 24467, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3675] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 28184, 169 28185, 236 28186, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2845] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 30786, 73 30787, 234 30788, 1 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3159] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 44885, 81 44886, 70 44887, 170 70, 240 71, 248 63646, 8 63902, 126 base: 70 lo: 240 hi: 248 deref_base: 63728 y_register: 174 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3486] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 49585, 200 49586, 253 49587, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1938] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 46279, 213 46280, 225 46281, 6 225, 40 195, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3369] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 50385, 254 50386, 84 50387, 216 55309, 28 55565, 46 50388, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2334] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 16384, 236 16385, 227 16386, 6 1763, 166 16387, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2466] | 0.52 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 51, 204 52, 56 53, 37 9528, 70 54, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3054] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 38303, 89 38304, 232 38305, 225 57704, 230 57960, 217 38306, 11 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2585] | 0.52 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 42311, 214 42312, 72 42313, 119 72, 229 139, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3857] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 3228, 189 3229, 137 3230, 131 33718, 143 3231, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i750] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 574, 49 575, 33 576, 64 33, 235 34, 126 32385, 34 32641, 136 base: 33 lo: 235 hi: 126 deref_base: 32491 y_register: 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2706] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 53879, 202 53880, 254 53881, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2065] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 63649, 217 63650, 139 63651, 165 42455, 2 63652, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2194] | 0.55 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 51378, 209 51379, 189 51380, 119 189, 152 190, 188 48309, 215 base: 189 lo: 152 hi: 188 deref_base: 48280 y_register: 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3271] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 25927, 246 25928, 97 25929, 166 97, 96 140, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i370] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 15043, 113 15044, 194 15045, 150 194, 184 195, 95 24534, 181 base: 194 lo: 184 hi: 95 deref_base: 24504 y_register: 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3574] | 0.49 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 29299, 108 29300, 81 29301, 126 32337, 48 32338, 241 61744, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3765] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 52219, 181 52220, 75 52221, 255 75, 155 213, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2942] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 39632, 85 39633, 90 39634, 22 90, 178 133, 97 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3487] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 1248, 200 1249, 3 1250, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3676] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 9925, 169 9926, 71 9927, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2846] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 27867, 73 27868, 112 27869, 155 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3160] | 0.59 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 50693, 81 50694, 142 50695, 21 142, 232 143, 236 60442, 146 60698, 142 base: 142 lo: 232 hi: 236 deref_base: 60648 y_register: 50 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1939] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 56385, 213 56386, 217 56387, 189 217, 160 255, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2335] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 50955, 236 50956, 243 50957, 75 19443, 111 50958, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3370] | 0.53 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 23544, 254 23545, 85 23546, 155 39722, 182 39978, 50 23547, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2707] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 38636, 202 38637, 12 38638, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3677] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 27584, 169 27585, 143 27586, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3488] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 49210, 200 49211, 93 49212, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3055] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 59572, 89 59573, 212 59574, 157 40253, 35 40509, 49 59575, 85 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3858] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 48358, 189 48359, 101 48360, 135 34681, 149 48361, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2847] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 16491, 73 16492, 29 16493, 254 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2066] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 16699, 217 16700, 238 16701, 101 25938, 214 26194, 136 16702, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2467] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 2104, 204 2105, 127 2106, 59 15231, 18 2107, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2586] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 9794, 214 9795, 208 9796, 77 208, 118 216, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3272] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 45877, 246 45878, 156 45879, 174 156, 116 41, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3766] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 1378, 181 1379, 145 1380, 152 145, 200 1, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json-i751] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/31.json 27662, 49 27663, 31 27664, 125 31, 83 32, 144 36906, 184 37162, 12 base: 31 lo: 83 hi: 144 deref_base: 36947 y_register: 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i371] | 0.56 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 58622, 113 58623, 240 58624, 193 240, 11 241, 178 45791, 172 base: 240 lo: 11 hi: 178 deref_base: 45579 y_register: 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2943] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 5328, 85 5329, 43 5330, 242 43, 163 128, 53 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2708] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 62259, 202 62260, 65 62261, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3575] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 32343, 108 32344, 230 32345, 191 49126, 81 49127, 4 1105, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2336] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 61789, 236 61790, 130 61791, 150 38530, 32 61792, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2195] | 0.43 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 3464, 209 3465, 99 3466, 119 99, 39 100, 239 61189, 223 61445, 103 base: 99 lo: 39 hi: 239 deref_base: 61223 y_register: 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3489] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 36010, 200 36011, 34 36012, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1940] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 6762, 213 6763, 175 6764, 6 175, 118 180, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3678] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 49974, 169 49975, 252 49976, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2848] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 20537, 73 20538, 128 20539, 244 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3056] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 32139, 89 32140, 183 32141, 183 47069, 248 32142, 192 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3767] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 13197, 181 13198, 62 13199, 50 62, 97 10, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3859] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 23056, 189 23057, 17 23058, 185 47599, 123 23059, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2067] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 2904, 217 2905, 133 2906, 130 33395, 199 33651, 23 2907, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3161] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 19046, 81 19047, 143 19048, 93 143, 24 144, 68 17649, 55 base: 143 lo: 24 hi: 68 deref_base: 17432 y_register: 217 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3273] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 56905, 246 56906, 99 56907, 27 99, 41 243, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2468] | 0.41 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 20609, 204 20610, 219 20611, 119 30683, 116 20612, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3371] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 16291, 254 16292, 84 16293, 129 33096, 72 33352, 156 16294, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3490] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 49889, 200 49890, 193 49891, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3679] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 45097, 169 45098, 119 45099, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json-i2849] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/49.json 28927, 73 28928, 175 28929, 222 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2709] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 64830, 202 64831, 46 64832, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3934] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 63543, 185 63544, 138 63545, 161 41414, 30 63546, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2587] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 15376, 214 15377, 205 15378, 82 205, 168 88, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2944] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 2009, 85 2010, 133 2011, 25 133, 209 204, 154 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1941] | 0.46 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 44470, 213 44471, 134 44472, 180 134, 235 174, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3576] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 49536, 108 49537, 144 49538, 177 45456, 18 45457, 61 15634, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2196] | 0.52 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 63832, 209 63833, 210 63834, 216 210, 111 211, 39 10215, 12 base: 210 lo: 111 hi: 39 deref_base: 10095 y_register: 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2337] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 40610, 236 40611, 220 40612, 248 63708, 21 40613, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i372] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 29451, 113 29452, 190 29453, 156 190, 145 191, 61 15740, 86 15996, 83 base: 190 lo: 145 hi: 61 deref_base: 15761 y_register: 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2710] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 52084, 202 52085, 102 52086, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3057] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 42804, 89 42805, 90 42806, 212 54502, 166 42807, 143 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3860] | 0.52 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 48307, 189 48308, 131 48309, 77 19964, 158 48310, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2068] | 0.58 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 28091, 217 28092, 223 28093, 31 8189, 33 28094, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3274] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 65065, 246 65066, 177 65067, 226 177, 13 0, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2945] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 48883, 85 48884, 82 48885, 254 82, 23 27, 223 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3680] | 0.18 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 17500, 169 17501, 225 17502, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3162] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 8293, 81 8294, 127 8295, 59 127, 25 128, 225 57635, 223 base: 127 lo: 25 hi: 225 deref_base: 57625 y_register: 10 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3768] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 58950, 181 58951, 217 58952, 90 217, 38 177, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2850] | 0.39 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 10834, 69 10835, 103 10836, 64 103, 92 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3491] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 25278, 200 25279, 233 25280, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3935] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 16537, 185 16538, 180 16539, 169 43334, 82 43590, 56 16540, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2469] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 20221, 204 20222, 33 20223, 248 63521, 250 20224, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3372] | 0.57 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 44458, 254 44459, 186 44460, 183 46974, 44 47230, 97 44461, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2588] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 19951, 214 19952, 84 19953, 155 84, 140 241, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2711] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 24090, 202 24091, 203 24092, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3681] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 43368, 169 43369, 243 43370, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1942] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 49105, 213 49106, 233 49107, 193 233, 232 137, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3492] | 0.30 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 35207, 200 35208, 171 35209, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3577] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 36169, 108 36170, 2 36171, 101 25858, 255 25859, 175 45055, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2338] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 1841, 236 1842, 149 1843, 252 64661, 212 1844, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i373] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 43390, 113 43391, 160 43392, 240 160, 217 161, 162 41689, 117 base: 160 lo: 217 hi: 162 deref_base: 41689 y_register: 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2470] | 0.52 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 50849, 204 50850, 70 50851, 95 24390, 42 50852, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2197] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 39958, 209 39959, 57 39960, 85 57, 80 58, 207 52993, 52 53249, 177 base: 57 lo: 80 hi: 207 deref_base: 53072 y_register: 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3058] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 10874, 89 10875, 43 10876, 91 23433, 127 10877, 78 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2851] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 50271, 69 50272, 166 50273, 38 166, 205 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2712] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 19575, 202 19576, 163 19577, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3769] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 47650, 181 47651, 113 47652, 31 113, 244 174, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2589] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 28273, 214 28274, 89 28275, 49 89, 101 225, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2946] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 7415, 85 7416, 148 7417, 48 148, 191 193, 210 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3861] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 61413, 189 61414, 242 61415, 201 51489, 213 51745, 200 61416, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3682] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 40880, 169 40881, 248 40882, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3275] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 47089, 246 47090, 69 47091, 112 69, 217 138, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3493] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 22612, 200 22613, 117 22614, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2069] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 61862, 217 61863, 102 61864, 17 4375, 188 4631, 53 61865, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3163] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 20790, 81 20791, 230 20792, 240 230, 115 231, 28 7365, 127 base: 230 lo: 115 hi: 28 deref_base: 7283 y_register: 82 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3936] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 9040, 185 9041, 85 9042, 91 23455, 52 9043, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3578] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 20515, 108 20516, 209 20517, 223 57297, 42 57298, 168 43050, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3373] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 48238, 254 48239, 116 48240, 136 34986, 161 48241, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1943] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 49432, 213 49433, 165 49434, 169 165, 36 80, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2713] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 19185, 202 19186, 88 19187, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2852] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 49488, 69 49489, 137 49490, 46 137, 134 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2339] | 0.39 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 13497, 236 13498, 171 13499, 2 683, 199 13500, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3683] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 62289, 169 62290, 55 62291, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i374] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 53015, 113 53016, 94 53017, 167 94, 34 95, 57 14846, 118 base: 94 lo: 34 hi: 57 deref_base: 14626 y_register: 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3494] | 0.30 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 12039, 200 12040, 244 12041, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3059] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 45867, 89 45868, 139 45869, 249 63898, 140 45870, 45 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2198] | 0.53 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 14962, 209 14963, 74 14964, 57 74, 197 75, 133 34093, 220 34349, 96 base: 74 lo: 197 hi: 133 deref_base: 34245 y_register: 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3770] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 44925, 181 44926, 30 44927, 184 30, 82 63, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2471] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 56116, 204 56117, 30 56118, 140 35870, 222 56119, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2590] | 0.57 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 34155, 214 34156, 225 34157, 194 225, 171 188, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3862] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 23243, 189 23244, 187 23245, 156 39990, 86 40246, 233 23246, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2947] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 55118, 85 55119, 237 55120, 69 237, 148 9, 4 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2714] | 0.19 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 38170, 202 38171, 52 38172, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2070] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 30550, 217 30551, 228 30552, 34 8925, 86 9181, 253 30553, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3276] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 44383, 246 44384, 69 44385, 154 69, 81 44, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3937] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 28271, 185 28272, 164 28273, 226 57875, 13 58131, 143 28274, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3579] | 0.55 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 63522, 108 63523, 17 63524, 68 17425, 213 17426, 162 41685, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3164] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 12736, 81 12737, 49 12738, 190 49, 7 50, 15 4090, 83 base: 49 lo: 7 hi: 15 deref_base: 3847 y_register: 243 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1944] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 22107, 213 22108, 124 22109, 215 124, 37 224, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3684] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 22907, 169 22908, 242 22909, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2853] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 37483, 69 37484, 113 37485, 194 113, 91 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3495] | 0.19 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 50447, 200 50448, 146 50449, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2340] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 27802, 236 27803, 187 27804, 94 24251, 101 27805, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3374] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 24131, 254 24132, 102 24133, 175 44990, 177 24134, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2715] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 43419, 202 43420, 247 43421, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3060] | 0.54 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 34, 89 35, 161 36, 43 11015, 12 11271, 27 37, 83 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3771] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 4945, 181 4946, 35 4947, 178 35, 220 178, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2472] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 62275, 204 62276, 186 62277, 6 1722, 202 62278, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json-i375] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/71.json 42490, 113 42491, 99 42492, 21 99, 102 100, 133 34158, 67 base: 99 lo: 102 hi: 133 deref_base: 34150 y_register: 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3685] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 44197, 169 44198, 65 44199, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3496] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 17591, 200 17592, 255 17593, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1945] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 9906, 213 9907, 185 9908, 60 185, 165 28, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2948] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 57680, 85 57681, 191 57682, 72 191, 9 56, 159 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2341] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 26175, 236 26176, 64 26177, 254 65088, 70 26178, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2199] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 19862, 209 19863, 157 19864, 170 157, 42 158, 19 5005, 164 base: 157 lo: 42 hi: 19 deref_base: 4906 y_register: 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3863] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 6042, 189 6043, 195 6044, 205 52585, 135 52841, 36 6045, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2071] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 32060, 217 32061, 204 32062, 6 1596, 106 1852, 189 32063, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3938] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 56678, 185 56679, 201 56680, 54 14018, 43 14274, 136 56681, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3277] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 18124, 246 18125, 249 18126, 33 249, 44 112, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2854] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 9462, 69 9463, 66 9464, 112 66, 20 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2591] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 60013, 214 60014, 2 60015, 165 2, 142 42, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2716] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 7620, 202 7621, 233 7622, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3772] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 57938, 181 57939, 86 57940, 16 86, 69 229, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3165] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 25648, 81 25649, 207 25650, 47 207, 92 208, 147 37646, 186 37902, 233 base: 207 lo: 92 hi: 147 deref_base: 37724 y_register: 178 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3375] | 0.55 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 62317, 254 62318, 122 62319, 176 45187, 124 62320, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3580] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 37213, 108 37214, 252 37215, 235 60412, 15 60413, 172 44047, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3497] | 0.19 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 35469, 200 35470, 186 35471, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3686] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 583, 169 584, 37 585, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2717] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 3333, 202 3334, 81 3335, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3061] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 43234, 89 43235, 134 43236, 23 6042, 36 43237, 179 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2473] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 41818, 204 41819, 69 41820, 132 33861, 117 41821, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4023] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 34200, 177 34201, 188 34202, 85 188, 149 189, 99 25527, 161 base: 188 lo: 149 hi: 99 deref_base: 25493 y_register: 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2949] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 49938, 85 49939, 244 49940, 217 244, 213 66, 134 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2855] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 33165, 69 33166, 135 33167, 138 135, 202 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2072] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 35951, 217 35952, 248 35953, 209 53740, 62 53996, 103 35954, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3864] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 36218, 189 36219, 186 36220, 212 54498, 34 36221, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1946] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 51887, 213 51888, 201 51889, 103 201, 203 181, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3498] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 25721, 200 25722, 3 25723, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2592] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 61306, 214 61307, 109 61308, 60 109, 193 93, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2200] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 25919, 224 25920, 30 25921, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3278] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 1261, 246 1262, 195 1263, 61 195, 109 58, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2342] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 65107, 236 65108, 239 65109, 82 21231, 83 65110, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3687] | 0.29 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 38643, 169 38644, 194 38645, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3939] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 39649, 185 39650, 215 39651, 1 305, 57 561, 50 39652, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2718] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 17564, 202 17565, 210 17566, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3581] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 11593, 108 11594, 215 11595, 169 43479, 117 43480, 82 21109, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3773] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 10768, 181 10769, 162 10770, 161 162, 154 135, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2950] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 49654, 77 49655, 156 49656, 133 34204, 16 49657, 204 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2201] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 1399, 224 1400, 209 1401, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4024] | 0.54 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 56130, 177 56131, 38 56132, 203 38, 108 39, 117 30154, 118 base: 38 lo: 108 hi: 117 deref_base: 30060 y_register: 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3376] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 42498, 254 42499, 129 42500, 143 36763, 63 42501, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3062] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 1320, 89 1321, 49 1322, 60 15400, 112 15656, 72 1323, 66 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3166] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 52184, 81 52185, 78 52186, 114 78, 43 79, 173 44534, 153 base: 78 lo: 43 hi: 173 deref_base: 44331 y_register: 203 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3688] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 27640, 169 27641, 198 27642, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2856] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 36318, 69 36319, 45 36320, 58 45, 21 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2474] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 41334, 204 41335, 132 41336, 227 58244, 95 41337, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3865] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 14567, 189 14568, 198 14569, 58 14960, 78 15216, 215 14570, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3499] | 0.18 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 41961, 200 41962, 29 41963, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2719] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 21031, 202 21032, 204 21033, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1947] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 50692, 213 50693, 21 50694, 204 21, 231 13, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3279] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 9349, 246 9350, 73 9351, 22 73, 159 23, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2073] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 47269, 217 47270, 94 47271, 25 6577, 198 47272, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2343] | 0.24 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 34638, 236 34639, 27 34640, 125 32027, 161 34641, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3940] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 35689, 185 35690, 98 35691, 135 34574, 92 34830, 18 35692, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2593] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 22185, 214 22186, 75 22187, 181 75, 0 160, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3500] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 48659, 76 48660, 122 48661, 139 35706, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3689] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 20514, 169 20515, 131 20516, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2857] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 43873, 69 43874, 50 43875, 173 50, 217 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3774] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 30837, 181 30838, 228 30839, 57 228, 36 56, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2202] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 23899, 224 23900, 248 23901, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2475] | 0.48 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 33659, 204 33660, 92 33661, 125 32092, 251 33662, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2951] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 55624, 77 55625, 103 55626, 154 39527, 98 55627, 174 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2344] | 0.50 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 63090, 236 63091, 1 63092, 84 21505, 72 63093, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2720] | 0.19 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 9394, 202 9395, 45 9396, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3167] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 17035, 81 17036, 31 17037, 174 31, 119 32, 211 54107, 135 54363, 87 base: 31 lo: 119 hi: 211 deref_base: 54135 y_register: 228 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3582] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 64942, 108 64943, 231 64944, 45 11751, 163 11752, 96 24739, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3063] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 18389, 89 18390, 150 18391, 16 4341, 37 18392, 177 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3377] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 51007, 254 51008, 7 51009, 150 38518, 148 51010, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3866] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 40255, 189 40256, 183 40257, 242 62124, 237 62380, 137 40258, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1948] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 58043, 213 58044, 171 58045, 139 171, 78 133, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2203] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 21587, 224 21588, 39 21589, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3941] | 0.47 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 59140, 185 59141, 250 59142, 148 38142, 161 59143, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2594] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 21484, 214 21485, 162 21486, 25 162, 124 90, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4025] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 64607, 177 64608, 179 64609, 89 179, 123 180, 177 45538, 17 base: 179 lo: 123 hi: 177 deref_base: 45435 y_register: 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3775] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 61848, 181 61849, 120 61850, 25 120, 245 30, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2074] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 20425, 217 20426, 34 20427, 122 31371, 169 20428, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3501] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 39167, 76 39168, 13 39169, 11 2829, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3280] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 41276, 246 41277, 210 41278, 54 210, 195 192, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3690] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 19206, 169 19207, 160 19208, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2721] | 0.27 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 30342, 202 30343, 139 30344, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2858] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 11831, 69 11832, 248 11833, 66 248, 80 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2952] | 0.25 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 16161, 77 16162, 32 16163, 75 19232, 152 16164, 209 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3691] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 53272, 169 53273, 134 53274, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2476] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 4116, 204 4117, 219 4118, 152 39131, 138 4119, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3064] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 33659, 89 33660, 28 33661, 83 21465, 71 33662, 231 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3378] | 0.59 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 20402, 254 20403, 132 20404, 39 10131, 94 20405, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3168] | 0.59 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 35194, 81 35195, 130 35196, 152 130, 255 131, 116 29760, 161 30016, 193 base: 130 lo: 255 hi: 116 deref_base: 29951 y_register: 65 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3583] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 50587, 108 50588, 98 50589, 98 25186, 202 25187, 0 202, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3867] | 0.56 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 47649, 189 47650, 38 47651, 16 4275, 112 47652, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2722] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 31486, 202 31487, 180 31488, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2345] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 41222, 236 41223, 146 41224, 12 3218, 98 41225, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2204] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 42299, 224 42300, 87 42301, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json-i1949] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d5.json 270, 213 271, 46 272, 254 46, 227 201, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3502] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 49155, 76 49156, 232 49157, 150 38632, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2595] | 0.48 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 53365, 214 53366, 110 53367, 240 110, 177 85, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4026] | 0.58 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 31267, 177 31268, 178 31269, 75 178, 232 179, 185 47412, 43 47668, 218 base: 178 lo: 232 hi: 185 deref_base: 47592 y_register: 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2075] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 57324, 217 57325, 47 57326, 176 45256, 62 57327, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2859] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 11495, 69 11496, 139 11497, 120 139, 201 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3942] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 40944, 185 40945, 118 40946, 96 24796, 165 40947, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3776] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 44728, 181 44729, 115 44730, 7 115, 15 252, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3281] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 57213, 246 57214, 170 57215, 49 170, 77 97, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2953] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 2403, 77 2404, 220 2405, 190 48860, 9 2406, 56 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2723] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 46688, 202 46689, 110 46690, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3692] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 7066, 169 7067, 126 7068, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2205] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 47155, 224 47156, 23 47157, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1950] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 6514, 205 6515, 117 6516, 73 18805, 252 6517, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2477] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 19973, 204 19974, 60 19975, 142 36412, 184 19976, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3065] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 48285, 89 48286, 147 48287, 32 8381, 72 48288, 47 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3503] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 14834, 76 14835, 88 14836, 234 59992, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3584] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 10829, 108 10830, 241 10831, 170 43761, 158 43762, 42 10910, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2346] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 13910, 236 13911, 45 13912, 25 6445, 127 13913, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3693] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 54652, 169 54653, 57 54654, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2076] | 0.50 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 20330, 217 20331, 101 20332, 84 21706, 117 20333, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2724] | 0.19 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 48509, 202 48510, 219 48511, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3282] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 52564, 246 52565, 30 52566, 228 30, 64 116, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3943] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 58543, 185 58544, 206 58545, 58 14933, 134 15189, 214 58546, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2860] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 6329, 69 6330, 115 6331, 202 115, 192 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2596] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 6095, 214 6096, 220 6097, 181 220, 67 14, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3379] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 38031, 254 38032, 253 38033, 27 7144, 132 7400, 131 38034, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3868] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 54859, 189 54860, 163 54861, 98 25096, 115 25352, 147 54862, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3169] | 0.40 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 8593, 81 8594, 44 8595, 220 44, 236 45, 78 20143, 96 20399, 234 base: 44 lo: 236 hi: 78 deref_base: 20204 y_register: 195 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3777] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 62648, 181 62649, 117 62650, 221 117, 184 30, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2478] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 40154, 204 40155, 144 40156, 172 44176, 248 40157, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2206] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 52471, 224 52472, 56 52473, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2954] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 9840, 77 9841, 175 9842, 38 9903, 208 9843, 65 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4027] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 65011, 177 65012, 176 65013, 31 176, 44 177, 236 60436, 165 60692, 188 base: 176 lo: 44 hi: 236 deref_base: 60460 y_register: 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3066] | 0.51 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 33403, 89 33404, 71 33405, 157 40306, 109 33406, 81 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2725] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 37027, 202 37028, 10 37029, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3504] | 0.24 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 58920, 76 58921, 51 58922, 38 9779, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3694] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 58521, 169 58522, 207 58523, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3585] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 11116, 108 11117, 0 11118, 101 25856, 2 25857, 135 34562, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2207] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 32264, 224 32265, 180 32266, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1951] | 0.37 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 61904, 205 61905, 245 61906, 206 52981, 178 61907, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2347] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 60949, 236 60950, 158 60951, 176 45214, 235 60952, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2861] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 58887, 69 58888, 210 58889, 236 210, 154 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3283] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 14449, 246 14450, 59 14451, 176 59, 154 203, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3869] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 22477, 189 22478, 225 22479, 238 61045, 43 61301, 214 22480, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3778] | 0.27 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 34967, 181 34968, 184 34969, 164 184, 23 221, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3944] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 52998, 185 52999, 163 53000, 112 28683, 178 28939, 148 53001, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3170] | 0.59 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 25581, 81 25582, 49 25583, 88 49, 107 50, 109 28049, 44 base: 49 lo: 107 hi: 109 deref_base: 28011 y_register: 38 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2597] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 30740, 214 30741, 43 30742, 119 43, 198 0, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3505] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 36861, 76 36862, 177 36863, 203 52145, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3380] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 6519, 254 6520, 18 6521, 9 2346, 147 6522, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2077] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 38465, 217 38466, 179 38467, 87 22409, 48 22665, 236 38468, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2726] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 4427, 202 4428, 132 4429, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3695] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 63081, 169 63082, 37 63083, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2479] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 1846, 204 1847, 242 1848, 100 25842, 49 1849, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4028] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 38903, 177 38904, 239 38905, 13 239, 88 240, 171 43903, 17 base: 239 lo: 88 hi: 171 deref_base: 43864 y_register: 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2955] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 12094, 77 12095, 70 12096, 92 23622, 7 12097, 116 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2862] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 42137, 69 42138, 174 42139, 57 174, 238 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2348] | 0.50 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 6654, 236 6655, 250 6656, 111 28666, 93 6657, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2208] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 63104, 224 63105, 202 63106, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3067] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 17760, 89 17761, 254 17762, 138 35484, 31 35740, 36 17763, 108 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1952] | 0.28 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 65343, 205 65344, 76 65345, 255 65356, 143 65346, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3586] | 0.51 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 386, 108 387, 52 388, 85 21812, 185 21813, 106 27321, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3779] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 9175, 181 9176, 51 9177, 158 51, 228 128, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2727] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 41706, 202 41707, 61 41708, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3945] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 44449, 185 44450, 29 44451, 41 10751, 0 44452, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3506] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 29755, 76 29756, 223 29757, 99 25567, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3870] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 42585, 189 42586, 93 42587, 176 45251, 151 42588, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2598] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 26470, 214 26471, 64 26472, 99 64, 157 2, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3696] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 26521, 169 26522, 64 26523, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3284] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 64573, 246 64574, 23 64575, 228 23, 231 84, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2209] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 57599, 224 57600, 100 57601, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4029] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 22351, 177 22352, 203 22353, 128 203, 18 204, 64 16392, 226 16648, 68 base: 203 lo: 18 hi: 64 deref_base: 16402 y_register: 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3381] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 50148, 254 50149, 59 50150, 167 42988, 216 50151, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2078] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 13137, 217 13138, 80 13139, 32 8251, 134 8507, 53 13140, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2863] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 54943, 69 54944, 154 54945, 191 154, 41 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1953] | 0.54 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 25027, 205 25028, 236 25029, 61 15852, 149 25030, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2956] | 0.28 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 12999, 77 13000, 109 13001, 119 30573, 144 13002, 128 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2480] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 20274, 204 20275, 235 20276, 50 13035, 172 20277, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3171] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 61978, 81 61979, 105 61980, 55 105, 73 106, 87 22448, 77 base: 105 lo: 73 hi: 87 deref_base: 22345 y_register: 103 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2728] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 61507, 202 61508, 147 61509, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3697] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 62995, 169 62996, 50 62997, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3068] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 60697, 89 60698, 105 60699, 9 2392, 213 2648, 212 60700, 192 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json-i2349] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ec.json 29141, 236 29142, 231 29143, 87 22503, 226 29144, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2210] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 14533, 224 14534, 23 14535, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3507] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 17007, 76 17008, 209 17009, 227 58321, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3780] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 49341, 181 49342, 189 49343, 217 189, 143 80, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3946] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 13965, 185 13966, 180 13967, 166 42544, 73 42800, 44 13968, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3587] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 48368, 108 48369, 175 48370, 38 9903, 115 9904, 187 47987, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json-i2599] | 0.49 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d6.json 19822, 214 19823, 103 19824, 152 103, 102 97, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2957] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 57462, 77 57463, 237 57464, 30 7917, 121 57465, 166 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3871] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 29900, 189 29901, 198 29902, 141 36177, 143 36433, 205 29903, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2864] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 58101, 69 58102, 125 58103, 104 125, 29 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3285] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 52571, 246 52572, 41 52573, 34 41, 168 127, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2729] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 40555, 202 40556, 190 40557, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3382] | 0.51 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 186, 254 187, 187 188, 60 15557, 206 189, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2079] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 47810, 217 47811, 55 47812, 63 16157, 207 16413, 249 47813, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4030] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 5383, 177 5384, 48 5385, 78 48, 225 49, 85 21824, 43 22080, 72 base: 48 lo: 225 hi: 85 deref_base: 21985 y_register: 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3698] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 57817, 169 57818, 138 57819, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2481] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 49942, 204 49943, 72 49944, 122 31304, 11 49945, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3172] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 26626, 81 26627, 239 26628, 128 239, 59 240, 16 4171, 78 base: 239 lo: 59 hi: 16 deref_base: 4155 y_register: 16 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2211] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 6152, 224 6153, 227 6154, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1954] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 37446, 205 37447, 60 37448, 179 45884, 90 37449, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3069] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 46776, 89 46777, 232 46778, 5 1321, 191 1577, 78 46779, 139 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2350] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 16059, 192 16060, 26 16061, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3508] | 0.24 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 41199, 76 41200, 6 41201, 161 41222, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3947] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 64003, 185 64004, 209 64005, 151 38771, 132 39027, 165 64006, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3781] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 21597, 181 21598, 227 21599, 63 227, 59 57, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3588] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 19724, 108 19725, 233 19726, 8 2281, 157 2282, 166 42653, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2730] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 15350, 202 15351, 68 15352, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3872] | 0.52 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 60458, 189 60459, 157 60460, 254 65163, 72 65419, 110 60461, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3699] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 59396, 169 59397, 39 59398, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2212] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 11241, 224 11242, 134 11243, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2865] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 48253, 69 48254, 22 48255, 166 22, 173 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3286] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 37240, 246 37241, 239 37242, 14 239, 133 68, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2482] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 3745, 204 3746, 99 3747, 165 42339, 36 3748, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2600] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 26279, 206 26280, 68 26281, 172 44100, 191 26282, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2958] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 57907, 77 57908, 120 57909, 187 47992, 45 57910, 245 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2080] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 6948, 217 6949, 9 6950, 34 8788, 174 6951, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2351] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 55022, 192 55023, 196 55024, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3509] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 13544, 76 13545, 10 13546, 122 31242, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4031] | 0.53 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 38474, 177 38475, 239 38476, 169 239, 119 240, 210 53966, 251 base: 239 lo: 119 hi: 210 deref_base: 53879 y_register: 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3383] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 5602, 254 5603, 167 5604, 206 52802, 125 53058, 174 5605, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2731] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 40091, 202 40092, 17 40093, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2866] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 17848, 69 17849, 107 17850, 53 107, 247 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3173] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 28404, 81 28405, 162 28406, 52 162, 128 163, 164 42096, 65 42352, 178 base: 162 lo: 128 hi: 164 deref_base: 42112 y_register: 240 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3070] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 34963, 89 34964, 238 34965, 239 61310, 212 61566, 126 34966, 182 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1955] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 52912, 205 52913, 175 52914, 52 13487, 195 52915, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2352] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 19948, 192 19949, 109 19950, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3782] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 39439, 181 39440, 66 39441, 179 66, 8 150, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2213] | 0.18 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 24620, 224 24621, 64 24622, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3700] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 44571, 165 44572, 120 44573, 241 120, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3948] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 15059, 185 15060, 120 15061, 244 62570, 202 62826, 18 15062, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3287] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 1267, 246 1268, 185 1269, 220 185, 66 62, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3510] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 60784, 76 60785, 93 60786, 50 12893, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3589] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 41636, 108 41637, 12 41638, 72 18444, 120 18445, 146 37496, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2959] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 13930, 77 13931, 84 13932, 203 52052, 18 13933, 49 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3873] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 41660, 189 41661, 154 41662, 189 48599, 60 41663, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2601] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 37093, 206 37094, 143 37095, 156 40079, 52 37096, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2483] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 41575, 204 41576, 127 41577, 141 36223, 237 41578, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2081] | 0.59 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 61167, 217 61168, 40 61169, 189 48535, 132 61170, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2732] | 0.18 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 9753, 202 9754, 153 9755, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2214] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 42379, 224 42380, 112 42381, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2867] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 64743, 69 64744, 77 64745, 221 77, 208 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2353] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 13585, 192 13586, 168 13587, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3384] | 0.52 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 53005, 254 53006, 201 53007, 32 8326, 249 8582, 43 53008, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1956] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 47732, 205 47733, 255 47734, 95 24575, 202 47735, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3071] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 63224, 89 63225, 228 63226, 105 27129, 144 63227, 60 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3701] | 0.28 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 2927, 165 2928, 27 2929, 83 27, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2733] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 65310, 202 65311, 165 65312, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3783] | 0.29 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 46714, 181 46715, 205 46716, 189 205, 10 251, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4032] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 21393, 177 21394, 57 21395, 61 57, 86 58, 17 4388, 112 4644, 41 base: 57 lo: 86 hi: 17 deref_base: 4438 y_register: 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3174] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 27027, 81 27028, 159 27029, 7 159, 83 160, 7 1916, 55 base: 159 lo: 83 hi: 7 deref_base: 1875 y_register: 41 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3511] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 54329, 76 54330, 187 54331, 30 7867, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2354] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 4017, 192 4018, 75 4019, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3949] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 41950, 185 41951, 55 41952, 59 15118, 133 15374, 244 41953, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2215] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 47418, 224 47419, 117 47420, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2868] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 32310, 69 32311, 29 32312, 10 29, 211 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3590] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 39316, 108 39317, 20 39318, 128 32788, 120 32789, 102 26232, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2484] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 60541, 204 60542, 81 60543, 93 23889, 127 60544, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3288] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 5990, 246 5991, 170 5992, 46 170, 210 45, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2960] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 3415, 77 3416, 100 3417, 202 51812, 49 3418, 146 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2602] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 63653, 206 63654, 11 63655, 23 5899, 133 63656, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3874] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 26669, 189 26670, 49 26671, 206 52983, 116 26672, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1957] | 0.48 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 1666, 205 1667, 95 1668, 115 29535, 127 1669, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3702] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 19093, 165 19094, 124 19095, 31 124, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3784] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 12136, 181 12137, 114 12138, 8 114, 194 70, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3072] | 0.52 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 18860, 89 18861, 186 18862, 168 43050, 246 43306, 254 18863, 43 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2734] | 0.19 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 4510, 202 4511, 90 4512, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2082] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 48435, 217 48436, 128 48437, 39 10150, 98 48438, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2216] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 16217, 224 16218, 73 16219, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4033] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 22288, 177 22289, 129 22290, 127 129, 120 130, 227 58183, 97 58439, 255 base: 129 lo: 120 hi: 227 deref_base: 58232 y_register: 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2355] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 15815, 192 15816, 147 15817, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3175] | 0.55 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 8990, 81 8991, 233 8992, 155 233, 106 234, 94 24252, 234 base: 233 lo: 106 hi: 94 deref_base: 24170 y_register: 82 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3512] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 64745, 76 64746, 116 64747, 177 45428, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3385] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 22836, 254 22837, 8 22838, 74 19101, 14 22839, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2869] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 53892, 69 53893, 54 53894, 75 54, 133 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2735] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 13548, 202 13549, 236 13550, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3950] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 52264, 161 52265, 230 52266, 221 230, 178 149, 154 150, 85 21914, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3875] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 26148, 189 26149, 169 26150, 158 40632, 22 26151, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2961] | 0.28 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 40371, 77 40372, 12 40373, 154 39436, 212 40374, 203 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2356] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 53410, 192 53411, 131 53412, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3591] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 14085, 108 14086, 122 14087, 216 55418, 211 55419, 84 21715, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3703] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 58807, 165 58808, 114 58809, 207 114, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2485] | 0.41 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 51033, 204 51034, 86 51035, 152 38998, 249 51036, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3289] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 39364, 246 39365, 125 39366, 251 125, 98 230, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2603] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 62262, 206 62263, 70 62264, 162 41542, 199 62265, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2217] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 27101, 224 27102, 75 27103, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1958] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 43505, 205 43506, 100 43507, 62 15972, 58 43508, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3785] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 3757, 181 3758, 186 3759, 77 186, 83 142, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3513] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 57643, 76 57644, 120 57645, 13 3448, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2083] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 40858, 217 40859, 83 40860, 152 39023, 18 40861, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3386] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 17060, 254 17061, 176 17062, 21 5430, 217 5686, 41 17063, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3073] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 38110, 89 38111, 143 38112, 150 38407, 185 38663, 160 38113, 161 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2736] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 16304, 202 16305, 137 16306, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2218] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 43965, 224 43966, 37 43967, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2870] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 62818, 69 62819, 180 62820, 48 180, 81 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2962] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 34408, 77 34409, 202 34410, 147 37834, 185 34411, 239 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3704] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 52847, 165 52848, 13 52849, 137 13, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2357] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 49957, 192 49958, 235 49959, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3951] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 22259, 161 22260, 46 22261, 236 46, 203 238, 80 239, 39 10064, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4034] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 35712, 177 35713, 204 35714, 127 204, 108 205, 237 60792, 128 base: 204 lo: 108 hi: 237 deref_base: 60780 y_register: 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3176] | 0.48 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 10765, 81 10766, 125 10767, 242 125, 156 126, 163 41976, 47 base: 125 lo: 156 hi: 163 deref_base: 41884 y_register: 92 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3290] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 26730, 246 26731, 17 26732, 201 17, 154 94, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3514] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 46220, 76 46221, 146 46222, 221 56722, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3592] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 321, 108 322, 163 323, 149 38307, 33 38308, 100 25633, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3876] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 41644, 189 41645, 154 41646, 217 55748, 214 41647, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2604] | 0.48 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 25769, 206 25770, 6 25771, 141 36102, 3 25772, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2486] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 11579, 204 11580, 178 11581, 175 44978, 41 11582, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2737] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 11785, 202 11786, 132 11787, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2871] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 43331, 69 43332, 74 43333, 201 74, 212 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1959] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 33704, 205 33705, 144 33706, 193 49552, 51 33707, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2358] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 5293, 192 5294, 208 5295, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3786] | 0.28 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 30004, 181 30005, 91 30006, 223 91, 63 24, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2219] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 50832, 224 50833, 157 50834, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3387] | 0.53 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 12724, 254 12725, 170 12726, 246 63073, 113 63329, 206 12727, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2084] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 57767, 217 57768, 246 57769, 252 64723, 29 64979, 88 57770, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2487] | 0.53 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 7155, 204 7156, 185 7157, 250 64185, 7 7158, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3074] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 23969, 89 23970, 179 23971, 220 56356, 162 56612, 98 23972, 113 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3705] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 48354, 165 48355, 87 48356, 200 87, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2963] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 1584, 77 1585, 58 1586, 195 49978, 51 1587, 61 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3515] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 28343, 76 28344, 223 28345, 115 29663, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3291] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 43609, 246 43610, 242 43611, 40 242, 48 108, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3593] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 49071, 108 49072, 249 49073, 181 46585, 78 46586, 220 56398, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2738] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 52611, 202 52612, 146 52613, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3877] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 4044, 189 4045, 194 4046, 243 62251, 144 62507, 12 4047, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2872] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 8673, 69 8674, 25 8675, 245 25, 188 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4035] | 0.59 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 15188, 177 15189, 17 15190, 204 17, 126 18, 66 17041, 122 base: 17 lo: 126 hi: 66 deref_base: 17022 y_register: 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2220] | 0.30 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 9232, 224 9233, 25 9234, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3787] | 0.47 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 39455, 181 39456, 75 39457, 198 75, 74 186, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3177] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 43482, 81 43483, 247 43484, 3 247, 168 248, 239 61223, 88 61479, 28 base: 247 lo: 168 hi: 239 deref_base: 61352 y_register: 127 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2359] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 54867, 192 54868, 191 54869, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3952] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 18541, 161 18542, 146 18543, 117 146, 21 88, 166 89, 118 30374, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1960] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 16020, 205 16021, 178 16022, 158 40626, 78 16023, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2605] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 48417, 206 48418, 33 48419, 134 34337, 252 48420, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3706] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 1839, 165 1840, 215 1841, 72 215, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2739] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 54466, 202 54467, 51 54468, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2085] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 40132, 217 40133, 61 40134, 143 36696, 175 40135, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2360] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 48143, 192 48144, 29 48145, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3075] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 10238, 89 10239, 63 10240, 143 36766, 244 10241, 169 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2221] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 45221, 224 45222, 27 45223, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3388] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 53076, 254 53077, 149 53078, 51 13138, 48 13394, 70 53079, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3516] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 2756, 76 2757, 149 2758, 127 32661, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2873] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 11632, 69 11633, 1 11634, 235 1, 71 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2964] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 14707, 77 14708, 152 14709, 233 59800, 64 14710, 51 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3878] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 36861, 189 36862, 219 36863, 70 18114, 211 18370, 163 36864, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2488] | 0.41 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 51493, 204 51494, 235 51495, 55 14315, 237 51496, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3707] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 59490, 165 59491, 121 59492, 31 121, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3788] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 55511, 181 55512, 109 55513, 0 109, 152 132, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2740] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 51666, 202 51667, 150 51668, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1961] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 14719, 205 14720, 237 14721, 51 13293, 49 14722, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2606] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 30714, 206 30715, 183 30716, 130 33463, 228 30717, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3292] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 21963, 246 21964, 240 21965, 124 240, 0 227, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2222] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 61249, 224 61250, 149 61251, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3594] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 4952, 108 4953, 18 4954, 202 51730, 91 51731, 119 30555, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3178] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 50209, 81 50210, 226 50211, 125 226, 28 227, 227 58277, 143 base: 226 lo: 28 hi: 227 deref_base: 58140 y_register: 137 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2361] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 19953, 192 19954, 65 19955, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3953] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 5428, 161 5429, 56 5430, 100 56, 30 10, 158 11, 231 59294, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2086] | 0.53 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 59928, 217 59929, 72 59930, 167 42756, 94 43012, 245 59931, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4036] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 40070, 177 40071, 128 40072, 186 128, 72 129, 244 62705, 188 base: 128 lo: 72 hi: 244 deref_base: 62536 y_register: 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2965] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 53716, 77 53717, 91 53718, 144 36955, 233 53719, 224 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3517] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 59912, 76 59913, 84 59914, 53 13652, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3076] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 65417, 89 65418, 63 65419, 101 25863, 88 26119, 84 65420, 152 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2741] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 6742, 202 6743, 206 6744, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2874] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 50487, 69 50488, 189 50489, 143 189, 204 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3389] | 0.53 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 63602, 254 63603, 106 63604, 240 61608, 191 63605, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1962] | 0.54 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 62552, 205 62553, 189 62554, 99 25533, 202 62555, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3879] | 0.51 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 40551, 189 40552, 231 40553, 16 4179, 38 4435, 99 40554, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2362] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 3133, 192 3134, 137 3135, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2489] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 51089, 204 51090, 65 51091, 150 38465, 177 51092, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3708] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 21865, 165 21866, 106 21867, 152 106, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2223] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 39045, 224 39046, 153 39047, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3789] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 11205, 181 11206, 5 11207, 226 5, 17 34, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2607] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 20357, 206 20358, 123 20359, 188 48251, 70 20360, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3595] | 0.56 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 42716, 108 42717, 140 42718, 107 27532, 32 27533, 17 4384, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3293] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 26765, 246 26766, 106 26767, 232 106, 45 104, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3179] | 0.55 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 31499, 81 31500, 192 31501, 69 192, 80 193, 2 551, 132 807, 151 base: 192 lo: 80 hi: 2 deref_base: 592 y_register: 215 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4037] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 16716, 177 16717, 164 16718, 193 164, 122 165, 89 22817, 165 23073, 137 base: 164 lo: 122 hi: 89 deref_base: 22906 y_register: 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3954] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 65339, 161 65340, 29 65341, 236 29, 154 152, 111 153, 209 53615, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2490] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 11150, 204 11151, 57 11152, 74 19001, 39 11153, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2742] | 0.18 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 38793, 202 38794, 16 38795, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3518] | 0.19 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 52653, 76 52654, 193 52655, 111 28609, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2363] | 0.24 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 40077, 192 40078, 97 40079, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2875] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 32745, 69 32746, 137 32747, 7 137, 19 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3077] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 48371, 89 48372, 84 48373, 102 26138, 248 26394, 108 48374, 173 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2224] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 29425, 224 29426, 246 29427, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2966] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 55539, 77 55540, 233 55541, 59 15337, 69 55542, 204 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2087] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 33272, 217 33273, 230 33274, 161 41338, 58 41594, 240 33275, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3709] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 50857, 165 50858, 5 50859, 109 5, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2743] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 62004, 202 62005, 198 62006, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3519] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 63861, 76 63862, 239 63863, 208 53487, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3880] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 21827, 189 21828, 235 21829, 110 28332, 19 28588, 26 21830, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3790] | 0.27 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 59408, 181 59409, 152 59410, 33 152, 142 46, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3390] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 60897, 254 60898, 33 60899, 160 40991, 129 41247, 79 60900, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1963] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 1261, 205 1262, 236 1263, 101 26092, 106 1264, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2608] | 0.49 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 8449, 206 8450, 32 8451, 115 29472, 193 8452, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2364] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 19953, 192 19954, 217 19955, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3294] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 42183, 246 42184, 101 42185, 217 101, 84 215, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2876] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 41728, 69 41729, 64 41730, 3 64, 179 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3955] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 1258, 161 1259, 19 1260, 140 19, 28 99, 90 100, 137 35162, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2225] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 9389, 224 9390, 230 9391, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4038] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 7624, 177 7625, 193 7626, 135 193, 198 194, 139 35590, 242 35846, 97 base: 193 lo: 198 hi: 139 deref_base: 35782 y_register: 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3596] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 51804, 108 51805, 31 51806, 120 30751, 180 30752, 47 12212, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2088] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 63902, 217 63903, 37 63904, 31 8115, 50 63905, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3078] | 0.55 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 13981, 89 13982, 112 13983, 239 61328, 128 13984, 230 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2967] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 40355, 77 40356, 33 40357, 51 13089, 200 40358, 138 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3180] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 24855, 81 24856, 232 24857, 58 232, 139 233, 64 16526, 52 base: 232 lo: 139 hi: 64 deref_base: 16523 y_register: 3 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3710] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 23134, 165 23135, 176 23136, 18 176, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3791] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 1211, 181 1212, 250 1213, 90 250, 254 53, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2491] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 39857, 204 39858, 194 39859, 116 29890, 243 39860, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2744] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 8776, 202 8777, 229 8778, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3520] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 11741, 76 11742, 13 11743, 101 25869, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1964] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 55870, 205 55871, 8 55872, 128 32776, 117 55873, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3881] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 60421, 189 60422, 90 60423, 44 11516, 152 60424, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2226] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 50835, 224 50836, 90 50837, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2365] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 31851, 192 31852, 37 31853, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2877] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 60078, 69 60079, 44 60080, 51 44, 175 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3391] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 34645, 254 34646, 129 34647, 175 45021, 194 34648, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3295] | 0.56 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 28742, 246 28743, 46 28744, 50 46, 254 90, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3711] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 25906, 165 25907, 32 25908, 64 32, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2745] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 1574, 202 1575, 217 1576, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2609] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 23817, 206 23818, 253 23819, 220 56573, 97 23820, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2366] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 32501, 192 32502, 28 32503, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2968] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 49920, 77 49921, 245 49922, 77 19957, 246 49923, 159 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2089] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 62629, 217 62630, 201 62631, 9 2427, 91 2683, 169 62632, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3597] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 58591, 108 58592, 174 58593, 238 61102, 33 61103, 219 56097, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2492] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 51610, 204 51611, 152 51612, 146 37528, 88 51613, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1965] | 0.54 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 53885, 205 53886, 113 53887, 238 61041, 219 53888, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3181] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 47992, 81 47993, 135 47994, 230 135, 237 136, 194 49677, 170 49933, 197 base: 135 lo: 237 hi: 194 deref_base: 49901 y_register: 32 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3521] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 21315, 76 21316, 22 21317, 97 24854, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3956] | 0.63 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 30905, 161 30906, 42 30907, 90 42, 59 159, 52 160, 184 47156, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2227] | 0.20 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 58947, 224 58948, 231 58949, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4039] | 0.48 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 21730, 177 21731, 65 21732, 67 65, 215 66, 179 45974, 225 46230, 132 base: 65 lo: 215 hi: 179 deref_base: 46039 y_register: 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3882] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 21028, 189 21029, 245 21030, 243 62223, 226 62479, 91 21031, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3079] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 43891, 89 43892, 198 43893, 97 24878, 104 25134, 149 43894, 48 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3792] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 18321, 181 18322, 121 18323, 113 121, 43 62, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2878] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 64119, 69 64120, 99 64121, 75 99, 196 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3712] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 35407, 165 35408, 30 35409, 213 30, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2746] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 33396, 202 33397, 156 33398, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2969] | 0.53 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 2996, 77 2997, 39 2998, 241 61735, 117 2999, 90 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3392] | 0.58 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 33863, 254 33864, 61 33865, 242 62007, 151 62263, 213 33866, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2228] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 62050, 224 62051, 70 62052, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2610] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 10190, 206 10191, 2 10192, 108 27650, 119 10193, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2367] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 20475, 192 20476, 139 20477, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2090] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 7446, 217 7447, 224 7448, 19 5015, 213 5271, 222 7449, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3296] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 40244, 246 40245, 9 40246, 20 9, 154 214, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3522] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 51001, 76 51002, 251 51003, 91 23547, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2493] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 60245, 204 60246, 150 60247, 50 12950, 163 60248, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3598] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 35708, 108 35709, 136 35710, 196 50312, 51 50313, 0 51, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2747] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 28602, 202 28603, 205 28604, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3182] | 0.50 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 20270, 81 20271, 38 20272, 251 38, 117 39, 168 43132, 133 base: 38 lo: 117 hi: 168 deref_base: 43125 y_register: 7 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3080] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 26853, 89 26854, 208 26855, 226 57916, 55 58172, 123 26856, 215 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3713] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 27227, 165 27228, 46 27229, 140 46, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3883] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 39908, 189 39909, 241 39910, 56 14540, 146 14796, 192 39911, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1966] | 0.34 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 29991, 205 29992, 68 29993, 239 61252, 71 29994, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2368] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 48931, 192 48932, 201 48933, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2879] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 58639, 69 58640, 104 58641, 215 104, 129 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3793] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 19986, 181 19987, 255 19988, 130 255, 246 77, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4040] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 42021, 177 42022, 92 42023, 235 92, 89 93, 85 21923, 250 base: 92 lo: 89 hi: 85 deref_base: 21849 y_register: 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2229] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 64018, 224 64019, 204 64020, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2494] | 0.54 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 32118, 204 32119, 173 32120, 196 50349, 158 32121, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3957] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 16904, 161 16905, 178 16906, 244 178, 107 23, 38 24, 19 4902, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2970] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 13223, 77 13224, 125 13225, 57 14717, 117 13226, 65 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2611] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 40740, 206 40741, 104 40742, 248 63592, 67 40743, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3523] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 16028, 76 16029, 191 16030, 23 6079, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2748] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 51937, 202 51938, 164 51939, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2091] | 0.52 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 49799, 217 49800, 43 49801, 85 21761, 176 22017, 78 49802, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3393] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 52722, 254 52723, 189 52724, 6 1779, 101 52725, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2230] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 50700, 224 50701, 157 50702, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3599] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 28495, 108 28496, 60 28497, 42 10812, 119 10813, 125 32119, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3714] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 29138, 165 29139, 103 29140, 154 103, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3884] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 49406, 189 49407, 231 49408, 49 12683, 42 12939, 70 49409, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2369] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 53885, 192 53886, 5 53887, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3297] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 21345, 246 21346, 86 21347, 172 86, 111 22, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1967] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 10399, 205 10400, 141 10401, 194 49805, 44 10402, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2880] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 41854, 69 41855, 184 41856, 73 184, 224 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3081] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 61570, 89 61571, 50 61572, 72 18655, 85 61573, 106 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4041] | 0.57 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 63123, 177 63124, 20 63125, 146 20, 27 21, 39 10057, 118 base: 20 lo: 27 hi: 39 deref_base: 10011 y_register: 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3794] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 53308, 181 53309, 26 53310, 37 26, 151 146, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3524] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 47676, 76 47677, 18 47678, 137 35090, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3183] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 56441, 81 56442, 59 56443, 221 59, 199 60, 105 26960, 107 27216, 30 base: 59 lo: 199 hi: 105 deref_base: 27079 y_register: 137 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json-i2749] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ca.json 49503, 202 49504, 90 49505, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2370] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 51706, 192 51707, 103 51708, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2612] | 0.56 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 23849, 206 23850, 122 23851, 44 11386, 253 23852, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3958] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 6628, 161 6629, 244 6630, 164 244, 206 119, 95 120, 208 53343, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2231] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 24017, 224 24018, 230 24019, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2881] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 65403, 69 65404, 111 65405, 248 111, 116 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2971] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 22314, 77 22315, 234 22316, 122 31466, 139 22317, 28 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2495] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 44860, 204 44861, 195 44862, 246 63171, 6 44863, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3394] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 61695, 254 61696, 103 61697, 150 38645, 5 61698, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3600] | 0.55 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 39103, 32 39104, 171 39105, 157 490, 195 40363, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3885] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 37847, 189 37848, 0 37849, 97 24862, 44 37850, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3715] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 7468, 165 7469, 46 7470, 1 46, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1968] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 48263, 205 48264, 136 48265, 111 28552, 248 48266, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2750] | 0.18 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 43349, 136 43350, 69 43351, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3525] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 64733, 76 64734, 191 64735, 175 44991, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2092] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 9922, 217 9923, 85 9924, 174 44740, 60 9925, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3298] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 44311, 246 44312, 26 44313, 141 26, 132 231, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2232] | 0.30 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 36584, 224 36585, 122 36586, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3082] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 9264, 89 9265, 127 9266, 243 62316, 242 62572, 7 9267, 15 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3795] | 0.28 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 59711, 181 59712, 103 59713, 114 103, 128 148, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2371] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 20517, 192 20518, 252 20519, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3184] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 60991, 81 60992, 98 60993, 192 98, 59 99, 54 14040, 8 base: 98 lo: 59 hi: 54 deref_base: 13883 y_register: 157 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2751] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 54905, 136 54906, 91 54907, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3716] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 56798, 165 56799, 46 56800, 189 46, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2882] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 52096, 69 52097, 58 52098, 43 58, 3 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4042] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 55852, 177 55853, 235 55854, 252 235, 136 236, 1 461, 36 base: 235 lo: 136 hi: 1 deref_base: 392 y_register: 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3959] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 20211, 161 20212, 35 20213, 145 35, 84 172, 16 173, 117 29968, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2972] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 15466, 77 15467, 88 15468, 16 4184, 206 15469, 59 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1969] | 0.56 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 46307, 205 46308, 168 46309, 249 63912, 66 46310, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3395] | 0.55 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 45220, 254 45221, 75 45222, 250 64161, 127 45223, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2496] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 53600, 204 53601, 255 53602, 119 30719, 226 53603, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2372] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 20491, 192 20492, 36 20493, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3526] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 33554, 76 33555, 21 33556, 37 9493, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3796] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 36477, 181 36478, 199 36479, 86 199, 88 82, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2613] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 52847, 206 52848, 90 52849, 40 10330, 55 52850, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2233] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 60715, 224 60716, 128 60717, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2093] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 27807, 217 27808, 71 27809, 243 62408, 30 27810, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json-i3299] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f6.json 44390, 246 44391, 143 44392, 214 143, 191 130, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3083] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 32973, 89 32974, 150 32975, 151 38872, 1 32976, 216 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3601] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 38221, 32 38222, 225 38223, 146 468, 231 37601, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3886] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 41513, 189 41514, 209 41515, 212 54432, 120 54688, 33 41516, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3717] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 32575, 165 32576, 179 32577, 52 179, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3185] | 0.52 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 32456, 81 32457, 84 32458, 120 84, 149 85, 34 8791, 95 9047, 201 base: 84 lo: 149 hi: 34 deref_base: 8853 y_register: 194 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2883] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 51284, 69 51285, 232 51286, 204 232, 94 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2752] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 12242, 136 12243, 180 12244, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2234] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 44061, 224 44062, 107 44063, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2373] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 27970, 192 27971, 245 27972, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4043] | 0.51 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 54761, 177 54762, 65 54763, 182 65, 26 66, 14 3749, 84 base: 65 lo: 26 hi: 14 deref_base: 3610 y_register: 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2973] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 44935, 77 44936, 83 44937, 98 25171, 14 44938, 90 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3527] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 43179, 76 43180, 181 43181, 121 31157, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2497] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 33211, 204 33212, 213 33213, 232 59605, 207 33214, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2614] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 18057, 206 18058, 4 18059, 131 33540, 32 18060, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3960] | 0.56 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 37922, 161 37923, 32 37924, 195 32, 136 9, 32 10, 11 2848, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2753] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 9081, 136 9082, 245 9083, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3797] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 26104, 181 26105, 38 26106, 130 38, 110 137, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1970] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 22981, 205 22982, 181 22983, 26 6837, 83 22984, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3300] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 46566, 238 46567, 194 46568, 183 47042, 99 46569, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3396] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 51575, 254 51576, 242 51577, 255 65286, 140 6, 123 51578, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2094] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 42671, 217 42672, 245 42673, 211 54148, 91 54404, 157 42674, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3718] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 33926, 165 33927, 128 33928, 108 128, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2374] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 5191, 192 5192, 117 5193, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3084] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 50580, 89 50581, 233 50582, 146 37488, 152 37744, 127 50583, 114 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2235] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 23235, 224 23236, 214 23237, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2974] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 418, 77 419, 141 420, 111 28557, 162 421, 107 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3602] | 0.59 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 9228, 32 9229, 251 9230, 152 503, 140 39163, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3887] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 37973, 189 37974, 92 37975, 65 16810, 49 37976, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2884] | 0.19 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 6229, 69 6230, 53 6231, 127 53, 251 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3528] | 0.23 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 8051, 76 8052, 19 8053, 150 38419, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3186] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 51181, 81 51182, 72 51183, 83 72, 152 73, 45 11545, 255 11801, 42 base: 72 lo: 152 hi: 45 deref_base: 11672 y_register: 129 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2615] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 29359, 206 29360, 254 29361, 46 12030, 17 29362, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2754] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 58849, 136 58850, 122 58851, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2498] | 0.29 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 10697, 204 10698, 17 10699, 43 11025, 236 10700, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2236] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 39068, 224 39069, 98 39070, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4044] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 55876, 177 55877, 58 55878, 126 58, 79 59, 143 36737, 21 base: 58 lo: 79 hi: 143 deref_base: 36687 y_register: 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2885] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 49562, 69 49563, 203 49564, 134 203, 139 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2375] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 24114, 192 24115, 191 24116, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1971] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 39905, 205 39906, 88 39907, 42 10840, 53 39908, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3085] | 0.55 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 29348, 89 29349, 74 29350, 147 37654, 225 37910, 73 29351, 191 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3719] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 44364, 165 44365, 18 44366, 7 18, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3798] | 0.26 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 43429, 181 43430, 135 43431, 48 135, 214 174, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3529] | 0.31 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 26536, 76 26537, 79 26538, 123 31567, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3301] | 0.53 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 24411, 238 24412, 38 24413, 233 59686, 99 24414, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2095] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 3458, 217 3459, 115 3460, 64 16515, 244 3461, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3961] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 55293, 161 55294, 27 55295, 80 27, 74 196, 51 197, 10 2611, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3397] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 57110, 254 57111, 253 57112, 88 22660, 249 22916, 29 57113, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2755] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 33147, 136 33148, 170 33149, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3888] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 51651, 189 51652, 119 51653, 183 46927, 159 47183, 191 51654, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2376] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 6731, 192 6732, 184 6733, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2975] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 5638, 77 5639, 73 5640, 124 31817, 134 5641, 126 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json-i2499] | 0.47 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cc.json 55832, 204 55833, 175 55834, 216 55471, 203 55835, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2237] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 14298, 224 14299, 243 14300, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3187] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 4850, 81 4851, 35 4852, 174 35, 33 36, 136 34875, 60 base: 35 lo: 33 hi: 136 deref_base: 34849 y_register: 26 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2616] | 0.52 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 64757, 206 64758, 45 64759, 204 52269, 170 64760, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3603] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 52302, 32 52303, 157 52304, 163 447, 72 41885, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2886] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 7298, 69 7299, 43 7300, 158 43, 216 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json-i3799] | 0.49 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b5.json 16765, 181 16766, 27 16767, 16 27, 37 189, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3530] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 36252, 76 36253, 81 36254, 153 39249, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3720] | 0.27 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 3435, 165 3436, 66 3437, 74 66, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4045] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 6337, 177 6338, 244 6339, 113 244, 131 245, 73 18924, 71 base: 244 lo: 131 hi: 73 deref_base: 18819 y_register: 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2756] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 48241, 136 48242, 204 48243, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1972] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 35825, 205 35826, 241 35827, 59 15345, 190 35828, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2096] | 0.53 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 21593, 217 21594, 16 21595, 142 36409, 173 21596, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2238] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 9451, 224 9452, 169 9453, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3398] | 0.56 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 25158, 254 25159, 51 25160, 43 11104, 68 25161, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3962] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 47407, 161 47408, 51 47409, 152 51, 123 247, 196 248, 162 41668, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2377] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 9176, 192 9177, 190 9178, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3086] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 42297, 89 42298, 76 42299, 118 30318, 136 42300, 73 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3302] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 51369, 238 51370, 8 51371, 103 26376, 139 51372, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3889] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 1417, 189 1418, 145 1419, 186 47807, 9 1420, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2976] | 0.25 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 34313, 77 34314, 219 34315, 110 28379, 56 34316, 97 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2757] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 24015, 136 24016, 145 24017, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2500] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 40821, 198 40822, 126 40823, 115 126, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3721] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 34186, 165 34187, 50 34188, 173 50, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2887] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 7200, 69 7201, 112 7202, 237 112, 101 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3531] | 0.32 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 58445, 76 58446, 99 58447, 34 8803, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3604] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 23810, 32 23811, 35 23812, 53 263, 251 13603, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2378] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 63317, 192 63318, 206 63319, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2239] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 17045, 224 17046, 186 17047, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4046] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 60021, 177 60022, 100 60023, 109 100, 225 101, 216 55460, 35 55716, 181 base: 100 lo: 225 hi: 216 deref_base: 55521 y_register: 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2617] | 0.45 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 32023, 206 32024, 117 32025, 43 11125, 58 32026, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3800] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 29984, 173 29985, 25 29986, 95 24345, 36 29987, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3188] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 42264, 81 42265, 208 42266, 132 208, 117 209, 217 55717, 205 base: 208 lo: 117 hi: 217 deref_base: 55669 y_register: 48 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1973] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 16491, 205 16492, 205 16493, 2 717, 6 16494, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2977] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 51581, 77 51582, 214 51583, 30 7894, 32 51584, 6 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3963] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 305, 161 306, 128 307, 201 128, 9 48, 0 49, 208 53248, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2501] | 0.47 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 48539, 198 48540, 69 48541, 60 69, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2758] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 11597, 136 11598, 150 11599, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2097] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 4163, 217 4164, 104 4165, 80 20614, 40 4166, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3303] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 51475, 238 51476, 100 51477, 245 62820, 183 51478, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3722] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 27365, 165 27366, 247 27367, 105 247, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3087] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 18796, 89 18797, 43 18798, 245 62874, 66 18799, 183 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3890] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 23893, 189 23894, 81 23895, 235 60351, 160 23896, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2240] | 0.29 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 17192, 224 17193, 226 17194, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3532] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 6986, 76 6987, 52 6988, 245 62772, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json-i3399] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fe.json 40817, 254 40818, 126 40819, 4 1254, 10 40820, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2888] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 22148, 69 22149, 53 22150, 55 53, 79 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2379] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 16483, 192 16484, 110 16485, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1974] | 0.51 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 5978, 205 5979, 166 5980, 100 25766, 184 5981, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3605] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 8544, 32 8545, 117 8546, 42 318, 20 10869, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2759] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 38836, 136 38837, 82 38838, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3801] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 4276, 173 4277, 236 4278, 123 31724, 149 4279, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2618] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 8133, 206 8134, 68 8135, 251 64324, 121 8136, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3189] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 11712, 81 11713, 255 11714, 128 255, 237 0, 120 30779, 133 31035, 62 base: 255 lo: 237 hi: 120 deref_base: 30957 y_register: 78 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2889] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 39692, 69 39693, 82 39694, 116 82, 207 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4047] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 52332, 177 52333, 192 52334, 43 192, 50 193, 241 61932, 126 base: 192 lo: 50 hi: 241 deref_base: 61746 y_register: 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3723] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 5985, 165 5986, 4 5987, 149 4, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2241] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 14937, 224 14938, 14 14939, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2380] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 14997, 192 14998, 214 14999, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2098] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 60353, 217 60354, 219 60355, 19 4944, 174 5200, 172 60356, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3304] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 52479, 238 52480, 143 52481, 201 51599, 119 52482, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3891] | 0.51 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 1114, 189 1115, 35 1116, 71 18265, 41 1117, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2978] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 9119, 77 9120, 3 9121, 104 26627, 117 9122, 183 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3533] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 17554, 76 17555, 1 17556, 35 8961, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3088] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 41867, 89 41868, 87 41869, 126 32397, 18 41870, 41 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2502] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 34738, 198 34739, 146 34740, 102 146, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3400] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 35594, 232 35595, 159 35596, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3964] | 0.59 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 31861, 161 31862, 34 31863, 134 34, 87 240, 38 241, 175 44838, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2242] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 44697, 224 44698, 200 44699, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2760] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 62307, 136 62308, 19 62309, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3606] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 25042, 32 25043, 23 25044, 164 452, 207 42007, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3802] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 29660, 173 29661, 121 29662, 201 51577, 140 29663, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3534] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 55598, 76 55599, 225 55600, 245 62945, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1975] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 30475, 205 30476, 135 30477, 239 61319, 253 30478, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2381] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 40324, 192 40325, 117 40326, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2890] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 51672, 69 51673, 15 51674, 121 15, 47 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3724] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 56207, 165 56208, 9 56209, 173 9, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2619] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 9156, 206 9157, 3 9158, 113 28931, 250 9159, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2503] | 0.30 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 52026, 198 52027, 66 52028, 16 66, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4048] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 38578, 177 38579, 6 38580, 15 6, 87 7, 111 28612, 48 base: 6 lo: 87 hi: 111 deref_base: 28503 y_register: 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3190] | 0.52 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 60699, 81 60700, 75 60701, 11 75, 81 76, 157 40273, 72 base: 75 lo: 81 hi: 157 deref_base: 40273 y_register: 0 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2761] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 26515, 136 26516, 5 26517, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3305] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 63302, 238 63303, 91 63304, 9 2395, 85 63305, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3089] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 39847, 89 39848, 241 39849, 45 11600, 16 11856, 141 39850, 83 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2979] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 37068, 77 37069, 109 37070, 182 46701, 172 37071, 146 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json-i2099] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d9.json 43073, 217 43074, 163 43075, 207 53196, 9 43076, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2382] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 37282, 192 37283, 169 37284, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2243] | 0.20 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 45981, 224 45982, 12 45983, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3803] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 46819, 173 46820, 253 46821, 36 9469, 115 46822, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3401] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 4980, 232 4981, 138 4982, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3892] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 43065, 189 43066, 93 43067, 230 58914, 147 59170, 210 43068, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3535] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 61410, 76 61411, 193 61412, 142 36545, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2504] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 59467, 198 59468, 139 59469, 88 139, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3607] | 0.48 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 16468, 32 16469, 132 16470, 143 438, 191 36740, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3725] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 56153, 165 56154, 104 56155, 170 104, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2891] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 13013, 69 13014, 43 13015, 230 43, 186 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1976] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 57930, 205 57931, 163 57932, 102 26275, 163 57933, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2762] | 0.19 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 57631, 136 57632, 84 57633, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3965] | 0.47 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 54662, 161 54663, 189 54664, 233 189, 163 187, 147 188, 104 26771, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2244] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 44277, 224 44278, 132 44279, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2620] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 4033, 206 4034, 174 4035, 51 13230, 200 4036, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3402] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 35380, 232 35381, 248 35382, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3306] | 0.54 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 50310, 238 50311, 190 50312, 36 9406, 171 50313, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2383] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 41775, 192 41776, 107 41777, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3090] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 48270, 89 48271, 185 48272, 175 44929, 41 45185, 164 48273, 197 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2100] | 0.55 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 52887, 193 52888, 56 52889, 243 56, 155 32, 55 33, 3 823, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2980] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 11992, 77 11993, 123 11994, 129 33147, 162 11995, 71 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3191] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 14190, 81 14191, 248 14192, 216 248, 252 249, 47 12153, 67 12409, 221 base: 248 lo: 252 hi: 47 deref_base: 12284 y_register: 125 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4049] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 54904, 177 54905, 3 54906, 110 3, 230 4, 115 29490, 120 29746, 73 base: 3 lo: 230 hi: 115 deref_base: 29670 y_register: 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2763] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 29628, 136 29629, 196 29630, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3726] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 53247, 165 53248, 45 53249, 49 45, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2892] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 57338, 69 57339, 224 57340, 98 224, 65 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3893] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 45777, 189 45778, 174 45779, 218 55834, 47 56090, 0 45780, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3536] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 26093, 76 26094, 69 26095, 229 58693, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1977] | 0.48 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 5295, 205 5296, 218 5297, 232 59610, 31 5298, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2505] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 54167, 198 54168, 84 54169, 154 84, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2245] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 62275, 224 62276, 21 62277, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3804] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 34102, 173 34103, 189 34104, 99 25533, 61 34105, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2384] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 39270, 192 39271, 82 39272, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2981] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 42360, 77 42361, 215 42362, 5 1495, 212 42363, 26 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3403] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 24991, 232 24992, 41 24993, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3608] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 53958, 32 53959, 20 53960, 19 450, 45 4884, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2621] | 0.59 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 10641, 206 10642, 139 10643, 20 5259, 211 10644, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3966] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 61061, 161 61062, 33 61063, 102 33, 107 112, 205 113, 41 10701, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3091] | 0.54 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 5606, 89 5607, 213 5608, 71 18262, 199 18518, 208 5609, 151 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2246] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 35581, 224 35582, 181 35583, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2764] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 24486, 136 24487, 74 24488, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3727] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 9336, 165 9337, 226 9338, 110 226, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3192] | 0.60 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 13583, 81 13584, 123 13585, 107 123, 136 124, 10 2703, 180 base: 123 lo: 136 hi: 10 deref_base: 2696 y_register: 7 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2893] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 4889, 69 4890, 192 4891, 69 192, 58 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3537] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 7423, 76 7424, 158 7425, 110 28318, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3404] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 49393, 232 49394, 5 49395, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3307] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 8529, 238 8530, 152 8531, 134 34456, 193 8532, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4050] | 0.29 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 56542, 162 56543, 151 56544, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2506] | 0.48 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 46341, 198 46342, 39 46343, 184 39, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3894] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 7177, 189 7178, 175 7179, 15 3955, 69 4211, 94 7180, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2385] | 0.20 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 21295, 192 21296, 179 21297, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2101] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 5610, 193 5611, 52 5612, 44 52, 30 36, 233 37, 84 21737, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3805] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 12662, 173 12663, 122 12664, 178 45690, 167 12665, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1978] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 34011, 205 34012, 128 34013, 1 384, 211 34014, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2765] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 13299, 136 13300, 45 13301, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3609] | 0.57 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 8960, 32 8961, 190 8962, 12 276, 11 3262, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2386] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 56555, 192 56556, 32 56557, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2247] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 62770, 224 62771, 185 62772, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3967] | 0.48 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 52399, 161 52400, 172 52401, 52 172, 138 94, 147 95, 189 48531, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2982] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 64459, 77 64460, 164 64461, 151 38820, 9 64462, 248 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3728] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 49135, 165 49136, 143 49137, 255 143, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4051] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 29264, 162 29265, 6 29266, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3405] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 21934, 232 21935, 110 21936, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2894] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 2409, 69 2410, 149 2411, 142 149, 124 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3538] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 27598, 76 27599, 146 27600, 34 8850, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2622] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 46292, 206 46293, 252 46294, 65 16892, 118 46295, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3308] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 21406, 238 21407, 248 21408, 9 2552, 16 21409, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3895] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 10544, 189 10545, 143 10546, 109 28070, 71 10547, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3092] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 40528, 89 40529, 209 40530, 207 53101, 150 53357, 179 40531, 16 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2248] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 9609, 224 9610, 156 9611, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2507] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 24923, 198 24924, 86 24925, 41 86, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2766] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 60352, 136 60353, 32 60354, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2102] | 0.61 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 36393, 193 36394, 37 36395, 28 37, 110 97, 228 98, 155 39908, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4052] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 16004, 162 16005, 192 16006, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3806] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 13030, 173 13031, 90 13032, 146 37466, 252 13033, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1979] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 1281, 205 1282, 176 1283, 254 65200, 146 1284, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3193] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 63611, 81 63612, 21 63613, 170 21, 183 22, 132 33817, 109 34073, 212 base: 21 lo: 183 hi: 132 deref_base: 33975 y_register: 98 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3406] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 18912, 232 18913, 209 18914, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2387] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 55448, 192 55449, 18 55450, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3539] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 58690, 76 58691, 65 58692, 59 15169, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3729] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 5111, 165 5112, 133 5113, 88 133, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2895] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 2962, 69 2963, 42 2964, 227 42, 226 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2983] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 37484, 77 37485, 36 37486, 40 10276, 239 37487, 244 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2767] | 0.30 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 62037, 136 62038, 110 62039, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3968] | 0.58 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 30400, 161 30401, 36 30402, 157 36, 77 99, 198 100, 192 49350, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2508] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 4902, 198 4903, 24 4904, 75 24, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2623] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 21710, 206 21711, 4 21712, 213 54532, 24 21713, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3610] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 48820, 32 48821, 60 48822, 181 496, 97 46396, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json-i2249] | 0.19 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e0.json 63094, 224 63095, 13 63096, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3896] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 47134, 189 47135, 179 47136, 14 3624, 44 3880, 240 47137, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2388] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 31876, 192 31877, 148 31878, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3093] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 39119, 89 39120, 3 39121, 26 6828, 154 39122, 93 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3309] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 2410, 238 2411, 156 2412, 109 28060, 34 2413, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4053] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 60915, 162 60916, 38 60917, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3407] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 50894, 232 50895, 78 50896, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3807] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 12475, 173 12476, 249 12477, 165 42489, 157 12478, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3194] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 4714, 81 4715, 98 4716, 234 98, 247 99, 165 42398, 33 42654, 189 base: 98 lo: 247 hi: 165 deref_base: 42487 y_register: 167 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2250] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 60792, 228 60793, 15 60794, 234 15, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3540] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 12862, 76 12863, 148 12864, 232 59540, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3730] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 9898, 165 9899, 65 9900, 5 65, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1980] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 10665, 205 10666, 33 10667, 245 62753, 137 10668, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2768] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 7388, 136 7389, 202 7390, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2896] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 41943, 69 41944, 44 41945, 104 44, 94 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4054] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 24061, 162 24062, 139 24063, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3408] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 35526, 232 35527, 224 35528, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2103] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 23627, 193 23628, 162 23629, 16 162, 151 114, 111 115, 120 30831, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2389] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 37983, 192 37984, 145 37985, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2509] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 11583, 198 11584, 182 11585, 42 182, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2984] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 12933, 77 12934, 82 12935, 177 45394, 42 12936, 152 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3611] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 3513, 32 3514, 93 3515, 178 304, 164 45661, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3808] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 473, 173 474, 46 475, 51 13102, 64 476, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3310] | 0.53 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 42887, 238 42888, 239 42889, 159 40943, 197 42890, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2624] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 58011, 206 58012, 238 58013, 86 22254, 243 58014, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3731] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 33699, 165 33700, 5 33701, 134 5, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1981] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 55401, 205 55402, 188 55403, 231 59324, 108 55404, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3897] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 41753, 189 41754, 168 41755, 75 19396, 52 41756, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3094] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 53705, 89 53706, 126 53707, 151 38659, 118 38915, 135 53708, 219 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2769] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 47448, 136 47449, 42 47450, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3969] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 7912, 161 7913, 96 7914, 26 96, 48 208, 132 209, 127 32644, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3541] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 64284, 76 64285, 137 64286, 131 33673, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2251] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 7446, 228 7447, 4 7448, 37 4, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2390] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 16466, 192 16467, 251 16468, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2897] | 0.29 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 43861, 69 43862, 80 43863, 237 80, 244 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4055] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 27419, 162 27420, 52 27421, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3409] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 42833, 232 42834, 222 42835, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2104] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 19910, 193 19911, 153 19912, 178 153, 112 9, 82 10, 119 30546, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3195] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 23457, 81 23458, 164 23459, 31 164, 255 165, 24 6218, 219 6474, 218 base: 164 lo: 255 hi: 24 deref_base: 6399 y_register: 75 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2510] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 52688, 198 52689, 36 52690, 5 36, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2985] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 40167, 77 40168, 146 40169, 10 2706, 50 40170, 15 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3732] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 4628, 165 4629, 46 4630, 163 46, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2770] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 25381, 136 25382, 147 25383, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2625] | 0.57 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 30016, 206 30017, 91 30018, 143 36699, 143 30019, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3612] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 15024, 32 15025, 194 15026, 252 496, 154 64706, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3410] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 1157, 232 1158, 125 1159, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3898] | 0.52 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 26082, 189 26083, 147 26084, 221 56815, 174 26085, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4056] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 40606, 162 40607, 174 40608, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3542] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 19698, 76 19699, 111 19700, 239 61295, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3095] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 36513, 89 36514, 177 36515, 195 49968, 177 50224, 71 36516, 66 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2898] | 0.31 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 24695, 69 24696, 74 24697, 39 74, 186 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2391] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 29974, 192 29975, 195 29976, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3809] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 26072, 173 26073, 17 26074, 221 56593, 199 26075, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3311] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 40931, 238 40932, 169 40933, 229 58793, 129 40934, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1982] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 43615, 205 43616, 130 43617, 252 64642, 32 43618, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3970] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 13656, 161 13657, 142 13658, 249 142, 34 2, 253 3, 110 28413, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2252] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 23520, 228 23521, 244 23522, 56 244, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2771] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 21591, 136 21592, 188 21593, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2986] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 58020, 77 58021, 187 58022, 115 29627, 111 58023, 170 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2511] | 0.48 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 59632, 198 59633, 156 59634, 58 156, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2392] | 0.35 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 48614, 192 48615, 41 48616, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3196] | 0.63 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 32049, 81 32050, 150 32051, 121 150, 193 151, 51 13171, 254 13427, 230 base: 150 lo: 193 hi: 51 deref_base: 13249 y_register: 178 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3733] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 9956, 165 9957, 43 9958, 42 43, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3411] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 8630, 232 8631, 176 8632, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3613] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 34592, 32 34593, 239 34594, 84 370, 170 21743, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json-i2899] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/45.json 46454, 69 46455, 169 46456, 66 169, 33 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3543] | 0.25 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 46087, 76 46088, 173 46089, 163 41901, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4057] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 7639, 162 7640, 49 7641, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2105] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 18300, 193 18301, 69 18302, 101 69, 167 214, 231 215, 7 2023, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3096] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 55831, 89 55832, 104 55833, 221 56685, 118 55834, 143 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2253] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 45367, 228 45368, 134 45369, 247 134, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3810] | 0.27 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 29172, 173 29173, 194 29174, 65 16834, 162 29175, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3971] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 5733, 161 5734, 96 5735, 76 96, 53 32, 79 33, 72 18511, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json-i3899] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bd.json 48341, 189 48342, 13 48343, 194 49852, 111 48344, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2626] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 1291, 206 1292, 131 1293, 108 27779, 193 1294, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2772] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 4863, 136 4864, 183 4865, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3312] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 544, 238 545, 90 546, 97 24922, 165 547, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3412] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 27895, 232 27896, 86 27897, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1983] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 58454, 205 58455, 145 58456, 207 53137, 14 58457, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4058] | 0.30 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 5708, 162 5709, 240 5710, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3544] | 0.33 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 63283, 76 63284, 251 63285, 145 37371, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2393] | 0.22 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 16773, 192 16774, 134 16775, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3734] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 7442, 165 7443, 3 7444, 8 3, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2987] | 0.38 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 37940, 77 37941, 91 37942, 79 20315, 6 37943, 213 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2512] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 46175, 198 46176, 140 46177, 23 140, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2900] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 42416, 85 42417, 160 42418, 119 160, 219 32, 89 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2773] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 25860, 136 25861, 25 25862, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3811] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 40926, 173 40927, 186 40928, 59 15290, 209 40929, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3614] | 0.50 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 3165, 32 3166, 194 3167, 191 407, 105 49090, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3413] | 0.29 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 1586, 232 1587, 123 1588, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3097] | 0.56 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 30234, 89 30235, 201 30236, 141 36165, 110 36421, 237 30237, 190 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2254] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 50450, 228 50451, 165 50452, 170 165, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2394] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 60, 192 61, 27 62, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4059] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 53092, 162 53093, 84 53094, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3197] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 39301, 81 39302, 25 39303, 45 25, 96 26, 118 30296, 106 30552, 213 base: 25 lo: 96 hi: 118 deref_base: 30304 y_register: 248 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3900] | 0.44 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 57299, 185 57300, 188 57301, 185 47590, 199 57302, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3545] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 25955, 76 25956, 159 25957, 107 27551, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2627] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 8126, 206 8127, 117 8128, 10 2677, 37 8129, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3313] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 63949, 238 63950, 86 63951, 18 4694, 228 63952, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1984] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 8042, 205 8043, 209 8044, 39 10193, 127 8045, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2106] | 0.48 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 31675, 193 31676, 80 31677, 45 80, 199 61, 53 62, 247 63285, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2513] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 8592, 198 8593, 241 8594, 129 241, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3735] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 37207, 165 37208, 30 37209, 44 30, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2988] | 0.28 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 2203, 77 2204, 158 2205, 99 25502, 212 2206, 201 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3972] | 0.56 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 19216, 161 19217, 203 19218, 124 203, 240 65, 82 66, 25 6482, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3414] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 27334, 232 27335, 221 27336, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2255] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 63622, 228 63623, 160 63624, 142 160, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2901] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 24494, 85 24495, 233 24496, 98 233, 8 207, 169 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2774] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 57950, 136 57951, 145 57952, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4060] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 19587, 162 19588, 16 19589, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2395] | 0.24 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 13048, 192 13049, 63 13050, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3812] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 12431, 173 12432, 186 12433, 183 47034, 178 12434, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3736] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 57061, 165 57062, 88 57063, 35 88, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3615] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 4365, 32 4366, 181 4367, 6 348, 31 1717, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3546] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 11200, 76 11201, 222 11202, 65 16862, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3415] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 58750, 232 58751, 188 58752, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2989] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 48557, 77 48558, 220 48559, 177 45532, 128 48560, 213 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4061] | 0.29 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 54638, 162 54639, 248 54640, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2775] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 17597, 136 17598, 3 17599, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1985] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 28613, 205 28614, 125 28615, 36 9341, 188 28616, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3901] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 11824, 185 11825, 234 11826, 43 11048, 44 11304, 23 11827, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3198] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 12595, 81 12596, 17 12597, 225 17, 95 18, 158 40518, 48 40774, 161 base: 17 lo: 95 hi: 158 deref_base: 40543 y_register: 231 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2628] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 58149, 206 58150, 191 58151, 136 35007, 22 58152, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2514] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 8792, 198 8793, 165 8794, 114 165, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3098] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 41573, 89 41574, 108 41575, 213 54567, 243 54823, 89 41576, 106 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3314] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 56697, 238 56698, 34 56699, 252 64546, 20 56700, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2396] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 22178, 192 22179, 175 22180, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2107] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 22601, 193 22602, 225 22603, 157 225, 204 92, 196 93, 233 59844, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2902] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 40976, 85 40977, 118 40978, 192 118, 210 119, 60 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2256] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 52334, 228 52335, 4 52336, 72 4, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3737] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 59142, 165 59143, 210 59144, 216 210, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3973] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 8193, 161 8194, 204 8195, 232 204, 185 203, 94 47454, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3416] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 5214, 232 5215, 45 5216, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4062] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 46900, 162 46901, 118 46902, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1986] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 39467, 205 39468, 151 39469, 150 38551, 131 39470, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3813] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 61301, 173 61302, 167 61303, 199 51111, 149 61304, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2776] | 0.27 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 56440, 136 56441, 44 56442, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3547] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 8109, 76 8110, 85 8111, 84 21589, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2515] | 0.52 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 22982, 198 22983, 210 22984, 40 210, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3616] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 38216, 32 38217, 119 38218, 90 499, 98 23159, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2397] | 0.19 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 58820, 192 58821, 248 58822, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2629] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 43107, 206 43108, 150 43109, 138 35478, 207 43110, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json-i3199] | 0.60 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/51.json 45667, 81 45668, 173 45669, 144 173, 133 174, 55 14265, 56 base: 173 lo: 133 hi: 55 deref_base: 14213 y_register: 52 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3902] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 14712, 185 14713, 232 14714, 211 54169, 90 54425, 175 14715, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2990] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 35756, 77 35757, 68 35758, 11 2884, 183 35759, 8 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3315] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 20022, 238 20023, 220 20024, 65 16860, 233 20025, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3417] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 9644, 232 9645, 8 9646, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2257] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 31036, 228 31037, 48 31038, 131 48, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json-i3099] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/59.json 46062, 89 46063, 128 46064, 116 29696, 90 29952, 219 46065, 3 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2903] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 56770, 85 56771, 13 56772, 132 13, 171 142, 141 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4063] | 0.30 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 51170, 162 51171, 143 51172, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2777] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 43399, 136 43400, 112 43401, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2398] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 56111, 192 56112, 204 56113, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3738] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 23797, 165 23798, 244 23799, 95 244, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2108] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 32763, 193 32764, 16 32765, 179 16, 104 210, 199 211, 65 16839, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3814] | 0.27 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 14315, 173 14316, 205 14317, 187 48077, 163 14318, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3974] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 34738, 161 34739, 95 34740, 73 95, 147 12, 24 13, 87 22296, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3548] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 19263, 76 19264, 225 19265, 226 58081, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3418] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 3453, 232 3454, 231 3455, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1987] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 14773, 205 14774, 197 14775, 185 47557, 235 14776, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4064] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 47726, 162 47727, 76 47728, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2630] | 0.53 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 46772, 206 46773, 26 46774, 196 50202, 203 46775, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3903] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 4803, 185 4804, 255 4805, 178 45798, 76 46054, 136 4806, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2991] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 45356, 77 45357, 37 45358, 86 22053, 35 45359, 114 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2778] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 55546, 136 55547, 157 55548, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2258] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 35319, 228 35320, 233 35321, 68 233, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2516] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 15775, 198 15776, 21 15777, 188 21, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3617] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 50474, 32 50475, 167 50476, 201 394, 130 51623, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2904] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 5650, 85 5651, 68 5652, 95 68, 89 37, 117 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3100] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 41384, 65 41385, 91 41386, 200 91, 196 93, 185 94, 168 43193, 128 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json-i3549] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4c.json 61384, 76 61385, 197 61386, 100 25797, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3815] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 27087, 173 27088, 147 27089, 242 62099, 221 27090, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3316] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 61962, 238 61963, 236 61964, 93 24044, 209 61965, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3419] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 37572, 232 37573, 182 37574, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json-i2399] | 0.21 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c0.json 27278, 192 27279, 21 27280, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3739] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 4893, 165 4894, 62 4895, 200 62, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3200] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 9721, 230 9722, 95 9723, 4 95, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4065] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 45226, 162 45227, 254 45228, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2109] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 58773, 193 58774, 128 58775, 98 128, 243 169, 244 170, 205 52724, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2779] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 36094, 136 36095, 227 36096, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2259] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 57123, 228 57124, 170 57125, 93 170, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2517] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 62653, 198 62654, 109 62655, 196 109, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3975] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 32735, 161 32736, 227 32737, 76 227, 77 26, 0 27, 10 2560, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2400] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 28113, 196 28114, 12 28115, 18 12, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3904] | 0.51 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 1875, 185 1876, 239 1877, 5 1381, 160 1637, 247 1878, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1988] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 60945, 205 60946, 186 60947, 213 54714, 41 60948, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3740] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 16723, 165 16724, 18 16725, 140 18, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2905] | 0.50 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 46082, 85 46083, 71 46084, 154 71, 83 65, 99 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3550] | 0.57 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 60280, 108 60281, 165 60282, 18 4773, 80 4774, 37 9552, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3201] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 40908, 230 40909, 233 40910, 10 233, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3420] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 10550, 232 10551, 138 10552, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2992] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 25065, 77 25066, 134 25067, 105 27014, 134 25068, 113 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3618] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 23742, 32 23743, 219 23744, 182 324, 124 46811, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3101] | 0.60 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 42703, 65 42704, 189 42705, 57 189, 111 17, 111 18, 196 50287, 157 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4066] | 0.18 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 57356, 162 57357, 182 57358, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2631] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 57450, 206 57451, 134 57452, 154 39558, 116 57453, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3317] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 31213, 238 31214, 87 31215, 116 29783, 230 31216, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2260] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 16113, 228 16114, 204 16115, 243 204, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2780] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 64744, 136 64745, 217 64746, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1989] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 25669, 205 25670, 5 25671, 89 22789, 62 25672, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2518] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 11050, 198 11051, 252 11052, 30 252, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3816] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 26843, 173 26844, 94 26845, 38 9822, 178 26846, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3421] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 26958, 232 26959, 98 26960, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4067] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 49470, 162 49471, 66 49472, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2401] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 52383, 196 52384, 205 52385, 97 205, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2993] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 61946, 77 61947, 82 61948, 9 2386, 135 61949, 237 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3741] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 775, 165 776, 140 777, 21 140, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2110] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 20593, 193 20594, 124 20595, 153 124, 88 219, 85 220, 175 44885, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3202] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 8498, 230 8499, 11 8500, 239 11, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2781] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 47246, 136 47247, 5 47248, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3976] | 0.60 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 48435, 161 48436, 50 48437, 145 50, 252 249, 197 250, 1 453, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3905] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 63409, 185 63410, 168 63411, 232 59449, 227 59705, 236 63412, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2632] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 16210, 206 16211, 73 16212, 112 28745, 181 16213, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2261] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 19922, 228 19923, 66 19924, 68 66, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2906] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 54370, 85 54371, 195 54372, 26 195, 60 148, 240 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3619] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 40657, 32 40658, 76 40659, 153 471, 123 39244, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3318] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 6505, 238 6506, 228 6507, 156 40164, 240 6508, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2519] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 42790, 198 42791, 72 42792, 129 72, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3551] | 0.47 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 38568, 108 38569, 220 38570, 131 33756, 209 33757, 126 32465, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3422] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 47144, 232 47145, 23 47146, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3817] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 14926, 173 14927, 38 14928, 30 7718, 173 14929, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4068] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 23284, 162 23285, 142 23286, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2402] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 57431, 196 57432, 176 57433, 168 176, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3102] | 0.57 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 49247, 65 49248, 5 49249, 65 5, 212 241, 73 242, 140 35913, 71 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2782] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 5779, 136 5780, 121 5781, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3203] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 39406, 230 39407, 54 39408, 148 54, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3742] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 25253, 165 25254, 3 25255, 172 3, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1990] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 6530, 205 6531, 194 6532, 59 15298, 120 6533, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4069] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 12385, 162 12386, 207 12387, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3423] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 4756, 232 4757, 27 4758, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2994] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 60786, 77 60787, 25 60788, 101 25881, 59 60789, 91 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2111] | 0.55 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 65184, 193 65185, 132 65186, 133 132, 213 208, 155 209, 13 3483, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2633] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 20706, 206 20707, 201 20708, 34 8905, 216 20709, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3906] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 32429, 185 32430, 9 32431, 187 47926, 92 32432, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json-i2907] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/55.json 19959, 85 19960, 57 19961, 55 57, 238 96, 243 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2262] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 62154, 228 62155, 46 62156, 237 46, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3319] | 0.59 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 34312, 238 34313, 70 34314, 18 4678, 204 34315, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2520] | 0.53 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 46013, 198 46014, 38 46015, 223 38, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2783] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 52378, 136 52379, 254 52380, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3620] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 25445, 32 25446, 237 25447, 202 351, 186 51949, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3818] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 18923, 173 18924, 251 18925, 15 4091, 63 18926, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2403] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 59217, 196 59218, 189 59219, 193 189, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3204] | 0.48 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 47231, 230 47232, 75 47233, 19 75, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3977] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 62961, 161 62962, 149 62963, 207 149, 196 20, 65 21, 28 7233, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3552] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 37173, 108 37174, 184 37175, 182 46776, 162 46777, 150 38562, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1991] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 42638, 205 42639, 163 42640, 13 3491, 198 42641, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4070] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 16186, 162 16187, 171 16188, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3743] | 0.18 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 14317, 165 14318, 242 14319, 218 242, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3424] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 38893, 232 38894, 161 38895, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2263] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 56602, 228 56603, 187 56604, 106 187, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2634] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 42699, 206 42700, 192 42701, 10 2752, 184 42702, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3103] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 32192, 65 32193, 69 32194, 69 69, 86 132, 176 133, 13 3504, 157 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2995] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 30237, 77 30238, 3 30239, 164 41987, 41 30240, 82 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3907] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 19561, 185 19562, 104 19563, 238 61129, 131 19564, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2404] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 1017, 196 1018, 235 1019, 44 235, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2784] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 8288, 136 8289, 107 8290, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4110] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 26479, 166 26480, 201 26481, 37 201, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3744] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 61668, 165 61669, 105 61670, 233 105, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3425] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 46847, 232 46848, 181 46849, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3621] | 0.51 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 29253, 32 29254, 38 29255, 250 285, 202 64038, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4071] | 0.28 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 29462, 162 29463, 75 29464, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2112] | 0.62 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 36167, 193 36168, 119 36169, 5 119, 49 163, 13 164, 42 10765, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3819] | 0.28 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 54428, 173 54429, 101 54430, 206 52837, 50 54431, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3553] | 0.58 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 56903, 108 56904, 238 56905, 45 11758, 149 11759, 149 38293, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2264] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 54017, 228 54018, 5 54019, 23 5, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2521] | 0.20 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 10355, 198 10356, 101 10357, 230 101, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3320] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 42199, 238 42200, 210 42201, 50 13010, 154 42202, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3978] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 4984, 161 4985, 27 4986, 140 27, 200 142, 235 143, 59 15339, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3205] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 8156, 230 8157, 130 8158, 239 130, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2785] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 4223, 136 4224, 208 4225, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4111] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 9960, 166 9961, 137 9962, 132 137, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1992] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 20544, 205 20545, 23 20546, 134 34327, 138 20547, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2405] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 37278, 196 37279, 134 37280, 14 134, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4072] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 10319, 162 10320, 232 10321, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2635] | 0.56 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 9644, 206 9645, 79 9646, 118 30287, 178 9647, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2522] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 53571, 198 53572, 129 53573, 46 129, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3104] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 38207, 65 38208, 39 38209, 153 39, 25 21, 234 22, 139 35818, 192 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3426] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 13196, 232 13197, 97 13198, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3820] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 47636, 173 47637, 193 47638, 21 5569, 218 47639, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2996] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 2598, 77 2599, 66 2600, 45 11586, 43 2601, 106 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3908] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 42367, 185 42368, 37 42369, 202 51965, 74 42370, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3745] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 40609, 165 40610, 129 40611, 88 129, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3206] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 20938, 230 20939, 114 20940, 174 114, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2265] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 38641, 228 38642, 83 38643, 240 83, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1993] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 31957, 205 31958, 246 31959, 115 29686, 149 31960, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2786] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 12988, 136 12989, 58 12990, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3622] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 34684, 32 34685, 113 34686, 79 324, 162 20337, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4073] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 10016, 162 10017, 182 10018, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3427] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 32643, 232 32644, 245 32645, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4112] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 56613, 166 56614, 24 56615, 166 24, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3321] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 38657, 238 38658, 54 38659, 192 49206, 131 38660, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3979] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 12316, 161 12317, 78 12318, 144 78, 200 29, 240 30, 206 52976, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2406] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 53943, 196 53944, 87 53945, 34 87, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2113] | 0.47 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 49077, 193 49078, 84 49079, 13 84, 66 208, 134 209, 235 60294, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json-i3554] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/6c.json 4122, 108 4123, 50 4124, 49 12594, 80 12595, 136 34896, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2523] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 8293, 198 8294, 200 8295, 189 200, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2787] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 23356, 136 23357, 115 23358, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3746] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 33493, 165 33494, 100 33495, 97 100, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3105] | 0.54 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 36991, 65 36992, 235 36993, 197 235, 6 193, 238 194, 242 62190, 209 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3909] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 20562, 185 20563, 97 20564, 147 37813, 56 20565, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2266] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 39813, 228 39814, 172 39815, 187 172, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3207] | 0.40 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 22130, 230 22131, 1 22132, 163 1, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2997] | 0.22 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 13886, 77 13887, 173 13888, 55 14253, 95 13889, 25 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3821] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 32420, 173 32421, 117 32422, 182 46709, 129 32423, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3428] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 16694, 232 16695, 122 16696, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4074] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 24399, 162 24400, 160 24401, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2636] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 3657, 206 3658, 21 3659, 228 58389, 240 3660, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4113] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 13212, 166 13213, 120 13214, 2 120, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3623] | 0.56 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 29204, 32 29205, 116 29206, 208 343, 68 53364, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1994] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 37951, 205 37952, 174 37953, 235 60334, 27 37954, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3322] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 8172, 238 8173, 216 8174, 201 51672, 225 8175, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2407] | 0.33 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 62811, 196 62812, 128 62813, 106 128, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2998] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 22382, 77 22383, 67 22384, 28 7235, 109 22385, 161 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2524] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 63323, 198 63324, 80 63325, 144 80, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3429] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 31455, 232 31456, 114 31457, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4075] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 6291, 162 6292, 120 6293, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4195] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 4703, 182 4704, 199 4705, 116 199, 160 248, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2114] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 52993, 193 52994, 64 52995, 117 64, 55 174, 76 175, 213 54604, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2788] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 37950, 136 37951, 101 37952, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3980] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 21082, 161 21083, 128 21084, 135 128, 184 129, 211 130, 193 49619, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2267] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 29334, 228 29335, 118 29336, 233 118, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3747] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 16138, 165 16139, 190 16140, 134 190, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3910] | 0.57 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 29158, 185 29159, 16 29160, 223 57331, 29 29161, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3208] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 38945, 230 38946, 85 38947, 28 85, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3822] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 37385, 173 37386, 184 37387, 234 60088, 138 37388, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2637] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 58891, 206 58892, 69 58893, 72 18501, 0 58894, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3106] | 0.60 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 23767, 65 23768, 70 23769, 88 70, 215 54, 136 55, 226 57992, 20 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4114] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 64721, 166 64722, 111 64723, 2 111, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2789] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 20894, 136 20895, 179 20896, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2408] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 47543, 196 47544, 39 47545, 200 39, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2525] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 38763, 198 38764, 197 38765, 55 197, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3323] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 13476, 238 13477, 228 13478, 92 23780, 135 13479, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json-i3748] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a5.json 47898, 165 47899, 43 47900, 177 43, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3430] | 0.26 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 7589, 232 7590, 186 7591, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4076] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 17812, 162 17813, 91 17814, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1995] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 47346, 205 47347, 97 47348, 12 3169, 110 47349, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3823] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 4344, 173 4345, 160 4346, 14 3744, 87 4347, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4196] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 47065, 182 47066, 214 47067, 55 214, 156 212, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json-i2999] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4d.json 969, 77 970, 184 971, 129 33208, 64 972, 132 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3624] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 16398, 32 16399, 30 16400, 174 287, 184 44574, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3209] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 49176, 230 49177, 103 49178, 96 103, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2115] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 25329, 193 25330, 100 25331, 2 100, 188 242, 223 243, 220 56543, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4115] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 2810, 166 2811, 187 2812, 103 187, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2268] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 50090, 228 50091, 82 50092, 101 82, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2409] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 15702, 196 15703, 238 15704, 46 238, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4077] | 0.29 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 59580, 162 59581, 63 59582, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3981] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 33851, 161 33852, 226 33853, 176 226, 231 73, 162 74, 113 29090, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3431] | 0.30 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 16734, 232 16735, 107 16736, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json-i2790] | 0.21 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/88.json 45781, 136 45782, 30 45783, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4277] | 0.57 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 48102, 190 48103, 21 48104, 130 33288, 132 33544, 114 48105, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2638] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 57174, 206 57175, 23 57176, 78 19991, 74 57177, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3911] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 53169, 185 53170, 160 53171, 86 22078, 137 22334, 111 53172, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3324] | 0.59 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 5035, 238 5036, 17 5037, 12 3089, 181 5038, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2269] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 53820, 228 53821, 48 53822, 15 48, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2526] | 0.28 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 1989, 198 1990, 92 1991, 120 92, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1996] | 0.48 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 56816, 205 56817, 229 56818, 154 39653, 70 56819, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3107] | 0.51 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 21352, 65 21353, 231 21354, 133 231, 20 29, 149 30, 26 6805, 18 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4357] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 13994, 164 13995, 172 13996, 175 172, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2410] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 27982, 196 27983, 248 27984, 72 248, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4197] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 49089, 182 49090, 127 49091, 153 127, 80 210, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4078] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 41136, 162 41137, 199 41138, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4116] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 53757, 166 53758, 100 53759, 10 100, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3432] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 26427, 232 26428, 87 26429, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3000] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 57808, 93 57809, 6 57810, 158 40682, 209 57811, 70 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3824] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 43715, 173 43716, 131 43717, 252 64643, 46 43718, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3625] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 9089, 32 9090, 178 9091, 212 483, 237 54450, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3210] | 0.31 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 51, 230 52, 180 53, 156 180, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2116] | 0.65 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 51768, 193 51769, 40 51770, 203 40, 77 48, 61 49, 142 36413, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2639] | 0.58 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 63445, 206 63446, 62 63447, 127 32574, 45 63448, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3982] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 25919, 161 25920, 109 25921, 59 109, 128 181, 21 182, 129 33045, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4079] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 55979, 162 55980, 150 55981, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2270] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 46703, 228 46704, 212 46705, 241 212, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2527] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 33956, 198 33957, 76 33958, 226 76, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3912] | 0.49 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 8918, 185 8919, 239 8920, 222 57043, 194 57299, 246 8921, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3433] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 21256, 232 21257, 159 21258, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4358] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 64941, 164 64942, 53 64943, 242 53, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4278] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 12204, 190 12205, 250 12206, 80 20532, 158 20788, 182 12207, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4117] | 0.41 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 34378, 166 34379, 179 34380, 36 179, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3211] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 35613, 230 35614, 106 35615, 45 106, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2411] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 57195, 196 57196, 20 57197, 118 20, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1997] | 0.29 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 56637, 205 56638, 141 56639, 117 30093, 45 56640, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3325] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 65190, 238 65191, 81 65192, 10 2641, 28 65193, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4198] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 33519, 182 33520, 27 33521, 119 27, 164 192, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3825] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 58490, 173 58491, 1 58492, 179 45825, 113 58493, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3108] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 53962, 65 53963, 152 53964, 54 152, 76 39, 119 40, 197 50551, 15 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3001] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 41811, 93 41812, 36 41813, 19 5082, 46 41814, 26 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3626] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 24659, 32 24660, 73 24661, 250 433, 92 64073, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4080] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 13031, 162 13032, 3 13033, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3434] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 48093, 232 48094, 106 48095, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2528] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 30899, 198 30900, 19 30901, 142 19, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2271] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 40559, 228 40560, 80 40561, 131 80, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3983] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 33481, 161 33482, 53 33483, 65 53, 173 210, 99 211, 77 19811, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4359] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 53145, 164 53146, 106 53147, 63 106, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4199] | 0.49 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 13419, 182 13420, 118 13421, 180 118, 142 223, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1998] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 61145, 205 61146, 156 61147, 147 37788, 121 61148, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3913] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 14142, 185 14143, 237 14144, 242 62123, 202 62379, 148 14145, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2640] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 27791, 206 27792, 242 27793, 21 5618, 119 27794, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4081] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 54381, 162 54382, 25 54383, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2412] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 31753, 196 31754, 238 31755, 170 238, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4279] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 57505, 190 57506, 104 57507, 121 31213, 50 57508, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3212] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 14508, 230 14509, 143 14510, 61 143, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2117] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 28050, 193 28051, 116 28052, 37 116, 87 14, 0 15, 186 47616, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4118] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 60316, 166 60317, 37 60318, 253 37, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3435] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 37962, 232 37963, 243 37964, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3326] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 64483, 238 64484, 153 64485, 172 44185, 87 64486, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3826] | 0.26 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 32720, 173 32721, 178 32722, 83 21426, 130 32723, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3109] | 0.54 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 42961, 65 42962, 52 42963, 224 52, 55 67, 37 68, 218 55845, 146 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3002] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 2056, 93 2057, 103 2058, 190 48858, 25 2059, 147 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3627] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 29133, 32 29134, 61 29135, 237 418, 211 60733, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2529] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 28573, 198 28574, 130 28575, 14 130, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2272] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 52127, 228 52128, 160 52129, 7 160, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4119] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 53020, 166 53021, 61 53022, 20 61, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4360] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 39092, 164 39093, 181 39094, 179 181, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4082] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 50890, 162 50891, 87 50892, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3914] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 52351, 185 52352, 124 52353, 53 13805, 122 52354, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3827] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 34378, 173 34379, 247 34380, 228 58615, 25 34381, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3436] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 23320, 232 23321, 205 23322, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2641] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 30456, 206 30457, 241 30458, 28 7409, 52 30459, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2413] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 56274, 196 56275, 35 56276, 240 35, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3213] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 26097, 230 26098, 163 26099, 184 163, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4280] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 12306, 190 12307, 240 12308, 197 50556, 24 50812, 97 12309, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4200] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 39332, 174 39333, 98 39334, 44 11362, 151 39335, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json-i1999] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/cd.json 14586, 205 14587, 120 14588, 107 27512, 94 14589, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3984] | 0.59 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 25528, 161 25529, 48 25530, 188 48, 152 15, 145 16, 106 27281, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2118] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 37421, 193 37422, 75 37423, 87 75, 142 113, 37 114, 210 53797, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3327] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 10011, 238 10012, 191 10013, 149 38335, 140 10014, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4361] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 35663, 164 35664, 75 35665, 145 75, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3437] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 39683, 232 39684, 224 39685, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2530] | 0.51 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 26435, 198 26436, 243 26437, 237 243, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4083] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 4473, 162 4474, 206 4475, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3628] | 0.52 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 41041, 32 41042, 188 41043, 58 309, 39 15036, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3003] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 30166, 93 30167, 137 30168, 37 9502, 0 9758, 110 30169, 153 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2273] | 0.28 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 2004, 228 2005, 202 2006, 215 202, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2414] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 49555, 196 49556, 203 49557, 21 203, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4120] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 20034, 166 20035, 70 20036, 65 70, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3110] | 0.62 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 8841, 65 8842, 226 8843, 124 226, 198 76, 58 77, 65 16698, 4 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3214] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 36280, 230 36281, 253 36282, 9 253, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3915] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 54088, 185 54089, 199 54090, 205 52703, 114 54091, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2642] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 39068, 206 39069, 50 39070, 255 65330, 79 39071, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4281] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 37032, 190 37033, 173 37034, 96 24768, 156 37035, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4201] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 12270, 174 12271, 98 12272, 108 27746, 184 12273, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3828] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 59609, 173 59610, 140 59611, 95 24460, 238 59612, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3328] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 22759, 238 22760, 106 22761, 81 20842, 180 22762, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3438] | 0.25 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 63475, 232 63476, 94 63477, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4084] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 55029, 162 55030, 70 55031, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2274] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 63476, 228 63477, 55 63478, 86 55, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2000] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 42221, 221 42222, 168 42223, 176 45092, 212 45348, 108 42224, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4362] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 64214, 164 64215, 107 64216, 76 107, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2415] | 0.35 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 476, 196 477, 196 478, 121 196, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4121] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 41563, 166 41564, 102 41565, 34 102, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3004] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 35450, 93 35451, 179 35452, 54 13920, 32 14176, 207 35453, 128 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2119] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 6609, 193 6610, 243 6611, 214 243, 47 3, 204 4, 18 4812, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3985] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 27032, 161 27033, 220 27034, 127 220, 184 191, 225 192, 75 19425, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4202] | 0.54 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 44095, 174 44096, 228 44097, 11 3044, 101 44098, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2531] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 19712, 198 19713, 94 19714, 94 94, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4085] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 538, 162 539, 20 540, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3629] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 38124, 32 38125, 167 38126, 9 477, 95 2471, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3916] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 27233, 185 27234, 45 27235, 210 54012, 232 27236, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3439] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 4146, 232 4147, 182 4148, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3215] | 0.27 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 13130, 230 13131, 249 13132, 86 249, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4122] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 28470, 166 28471, 246 28472, 135 246, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3829] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 34665, 173 34666, 223 34667, 59 15327, 192 34668, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2643] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 9200, 206 9201, 25 9202, 234 59929, 225 9203, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3329] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 3446, 238 3447, 253 3448, 93 24061, 34 3449, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4282] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 5690, 190 5691, 112 5692, 242 62065, 172 5693, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2275] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 59397, 228 59398, 48 59399, 145 48, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4363] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 32159, 164 32160, 243 32161, 154 243, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3111] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 24012, 65 24013, 48 24014, 131 48, 168 107, 226 108, 57 14818, 44 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2001] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 38753, 221 38754, 157 38755, 44 11501, 99 38756, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2416] | 0.34 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 18685, 196 18686, 219 18687, 57 219, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2532] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 21354, 198 21355, 243 21356, 59 243, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3005] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 9502, 93 9503, 18 9504, 134 34416, 7 9505, 114 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4086] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 33438, 162 33439, 82 33440, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3986] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 30255, 161 30256, 126 30257, 187 126, 217 195, 11 196, 40 10251, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2120] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 38947, 193 38948, 156 38949, 42 156, 1 93, 187 94, 50 12987, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3216] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 7964, 230 7965, 26 7966, 218 26, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3440] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 27734, 232 27735, 59 27736, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3630] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 16710, 32 16711, 114 16712, 195 500, 213 50034, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4123] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 3735, 166 3736, 170 3737, 241 170, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4203] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 24589, 174 24590, 237 24591, 246 63213, 18 24592, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2644] | 0.50 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 17505, 206 17506, 0 17507, 1 256, 14 17508, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2276] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 20648, 228 20649, 92 20650, 179 92, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4087] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 64064, 162 64065, 165 64066, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4364] | 0.26 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 61265, 164 61266, 140 61267, 68 140, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2417] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 6954, 196 6955, 3 6956, 9 3, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4283] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 41364, 190 41365, 189 41366, 155 39767, 16 40023, 151 41367, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3830] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 55045, 173 55046, 192 55047, 233 59840, 132 55048, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3917] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 18508, 185 18509, 122 18510, 14 3838, 29 18511, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2533] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 17331, 198 17332, 57 17333, 69 57, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3441] | 0.29 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 16655, 232 16656, 163 16657, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3112] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 39128, 65 39129, 116 39130, 188 116, 62 147, 205 148, 22 5837, 178 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3330] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 59201, 238 59202, 123 59203, 198 50811, 149 59204, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3006] | 0.52 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 23559, 93 23560, 129 23561, 31 8056, 220 8312, 49 23562, 147 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2002] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 55125, 221 55126, 80 55127, 96 24665, 157 55128, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3217] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 3954, 230 3955, 201 3956, 230 201, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3987] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 37070, 161 37071, 166 37072, 196 166, 164 187, 172 188, 208 53420, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4124] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 5568, 166 5569, 104 5570, 83 104, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4365] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 43787, 164 43788, 202 43789, 94 202, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4088] | 0.19 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 64888, 162 64889, 202 64890, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2121] | 0.62 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 32566, 193 32567, 132 32568, 70 132, 146 203, 101 204, 29 7525, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3442] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 37022, 232 37023, 71 37024, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2277] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 8304, 228 8305, 248 8306, 150 248, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2534] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 7031, 198 7032, 172 7033, 73 172, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4204] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 41689, 174 41690, 149 41691, 0 149, 51 41692, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2418] | 0.24 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 23671, 196 23672, 234 23673, 176 234, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3831] | 0.27 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 28513, 173 28514, 197 28515, 66 17093, 20 28516, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3918] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 16094, 185 16095, 40 16096, 90 23059, 36 23315, 91 16097, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3631] | 0.50 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 22991, 32 22992, 164 22993, 38 285, 70 9892, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4284] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 33734, 190 33735, 198 33736, 58 14869, 51 15125, 160 33737, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2645] | 0.47 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 51856, 206 51857, 199 51858, 38 9927, 134 51859, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3331] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 62153, 238 62154, 167 62155, 209 53671, 114 62156, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4089] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 641, 162 642, 172 643, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3218] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 37540, 230 37541, 213 37542, 134 213, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3443] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 21918, 232 21919, 219 21920, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3113] | 0.56 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 27541, 65 27542, 164 27543, 203 164, 192 99, 106 100, 65 16746, 183 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2003] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 47020, 221 47021, 229 47022, 236 60624, 9 60880, 159 47023, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4125] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 58685, 166 58686, 54 58687, 142 54, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2278] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 31217, 228 31218, 46 31219, 254 46, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4366] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 58474, 164 58475, 126 58476, 254 126, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3007] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 34048, 93 34049, 241 34050, 244 62603, 249 62859, 157 34051, 178 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json-i2419] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c4.json 26252, 196 26253, 22 26254, 5 22, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3832] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 49188, 173 49189, 118 49190, 203 52086, 34 49191, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2535] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 36683, 198 36684, 21 36685, 72 21, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3988] | 0.59 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 43206, 161 43207, 125 43208, 53 125, 6 212, 180 213, 117 30132, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4205] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 35314, 174 35315, 202 35316, 11 3018, 29 35317, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3919] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 21524, 185 21525, 140 21526, 15 3979, 99 4235, 253 21527, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4090] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 31922, 162 31923, 193 31924, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3444] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 7762, 232 7763, 193 7764, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4285] | 0.55 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 47230, 190 47231, 175 47232, 43 11122, 70 11378, 110 47233, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3332] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 52230, 238 52231, 50 52232, 241 61746, 29 52233, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3632] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 40774, 32 40775, 144 40776, 67 315, 35 17296, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2279] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 35400, 228 35401, 183 35402, 214 183, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2122] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 41887, 193 41888, 245 41889, 113 245, 123 110, 76 111, 152 38988, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4435] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 11319, 180 11320, 225 11321, 119 225, 253 250, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2646] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 26582, 206 26583, 37 26584, 162 41509, 202 26585, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2004] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 54705, 221 54706, 193 54707, 202 51746, 165 52002, 172 54708, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4126] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 55337, 166 55338, 26 55339, 2 26, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4367] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 42058, 164 42059, 215 42060, 92 215, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3008] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 55622, 93 55623, 57 55624, 135 34778, 207 55625, 164 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3219] | 0.24 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 52953, 230 52954, 224 52955, 197 224, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4091] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 22935, 162 22936, 122 22937, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4206] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 3971, 174 3972, 207 3973, 34 8911, 111 3974, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3445] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 26939, 232 26940, 71 26941, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3114] | 0.65 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 29213, 65 29214, 182 29215, 19 182, 169 193, 18 194, 19 4882, 35 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3833] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 36935, 173 36936, 201 36937, 223 57289, 57 36938, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2536] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 20848, 198 20849, 87 20850, 61 87, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3920] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 10142, 185 10143, 179 10144, 50 12820, 7 13076, 150 10145, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3333] | 0.53 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 64057, 238 64058, 99 64059, 71 18275, 135 64060, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3220] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 9750, 230 9751, 244 9752, 89 244, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2280] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 23459, 228 23460, 69 23461, 227 69, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3633] | 0.47 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 50510, 32 50511, 142 50512, 150 288, 36 38542, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2647] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 1460, 206 1461, 217 1462, 104 26841, 2 1463, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4368] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 47010, 164 47011, 80 47012, 65 80, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4127] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 27068, 166 27069, 219 27070, 13 219, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3989] | 0.47 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 25658, 161 25659, 175 25660, 194 175, 167 34, 83 35, 187 47955, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4436] | 0.50 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 26085, 180 26086, 100 26087, 111 100, 222 84, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2005] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 47851, 221 47852, 226 47853, 170 43715, 253 43971, 104 47854, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4092] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 4434, 162 4435, 185 4436, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2123] | 0.47 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 64994, 193 64995, 24 64996, 239 24, 31 186, 67 187, 80 20547, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3446] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 63148, 232 63149, 51 63150, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4286] | 0.46 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 44341, 190 44342, 74 44343, 90 23191, 249 44344, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3009] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 56729, 93 56730, 81 56731, 210 54007, 113 56732, 29 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2537] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 36179, 198 36180, 101 36181, 148 101, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3834] | 0.28 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 48251, 173 48252, 140 48253, 194 49804, 110 48254, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4207] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 55943, 174 55944, 209 55945, 79 20433, 84 55946, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4128] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 12585, 166 12586, 18 12587, 128 18, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3447] | 0.29 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 65368, 232 65369, 199 65370, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2281] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 30917, 228 30918, 64 30919, 173 64, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4093] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 5356, 162 5357, 160 5358, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3921] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 27209, 185 27210, 241 27211, 113 28941, 183 29197, 53 27212, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3221] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 22309, 230 22310, 65 22311, 7 65, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3115] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 17145, 65 17146, 206 17147, 254 206, 125 186, 93 187, 143 36701, 129 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4369] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 32960, 164 32961, 242 32962, 52 242, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2648] | 0.54 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 16545, 206 16546, 226 16547, 193 49634, 161 16548, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2006] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 58390, 221 58391, 62 58392, 38 9983, 207 58393, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3634] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 49138, 32 49139, 57 49140, 195 473, 186 49977, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2538] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 48880, 198 48881, 219 48882, 102 219, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3334] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 45082, 238 45083, 200 45084, 5 1480, 187 45085, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3990] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 27388, 161 27389, 195 27390, 202 195, 131 103, 148 104, 2 660, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3835] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 31086, 173 31087, 102 31088, 150 38502, 208 31089, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3010] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 29004, 93 29005, 213 29006, 200 51268, 131 51524, 222 29007, 234 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4437] | 0.45 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 29619, 180 29620, 18 29621, 217 18, 218 175, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2124] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 50233, 193 50234, 20 50235, 139 20, 240 99, 209 100, 88 22737, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2282] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 20088, 228 20089, 94 20090, 249 94, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4287] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 60817, 190 60818, 75 60819, 5 1285, 158 1541, 76 60820, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3448] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 4474, 232 4475, 117 4476, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4129] | 0.41 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 21033, 166 21034, 10 21035, 31 10, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4094] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 53281, 162 53282, 100 53283, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4208] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 55166, 174 55167, 161 55168, 215 55201, 59 55169, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4370] | 0.34 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 49192, 164 49193, 60 49194, 204 60, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3222] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 59203, 230 59204, 133 59205, 160 133, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3922] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 36285, 185 36286, 116 36287, 192 49366, 93 36288, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json-i3449] | 0.32 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e8.json 42661, 232 42662, 12 42663, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4095] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 56827, 162 56828, 105 56829, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3635] | 0.55 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 26262, 32 26263, 157 26264, 145 274, 213 37277, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3116] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 26574, 65 26575, 22 26576, 147 22, 34 72, 113 73, 213 54641, 241 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2539] | 0.50 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 11986, 198 11987, 34 11988, 238 34, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2283] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 11938, 228 11939, 132 11940, 24 132, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3011] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 52523, 93 52524, 187 52525, 34 8877, 0 9133, 118 52526, 148 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3991] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 33350, 161 33351, 188 33352, 84 188, 236 182, 58 183, 56 14394, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2007] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 28086, 221 28087, 79 28088, 42 10946, 63 28089, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3335] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 7541, 238 7542, 245 7543, 213 54773, 118 7544, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json-i2649] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ce.json 55248, 206 55249, 242 55250, 167 42994, 62 55251, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4288] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 3262, 190 3263, 132 3264, 164 42224, 99 3265, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4438] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 12264, 180 12265, 137 12266, 254 137, 135 82, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3836] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 23546, 173 23547, 74 23548, 125 32074, 41 23549, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4371] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 33072, 164 33073, 190 33074, 7 190, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4130] | 0.41 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 36097, 166 36098, 132 36099, 12 132, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4209] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 3309, 174 3310, 239 3311, 104 26863, 222 3312, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3223] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 5906, 230 5907, 98 5908, 3 98, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2125] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 7887, 193 7888, 194 7889, 114 194, 69 41, 69 42, 157 40261, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3450] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 28748, 200 28749, 183 28750, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3923] | 0.52 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 337, 185 338, 149 339, 139 35672, 130 35928, 37 340, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4096] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 10199, 162 10200, 175 10201, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4439] | 0.52 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 53338, 180 53339, 151 53340, 74 151, 187 153, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2284] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 58336, 228 58337, 172 58338, 156 172, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3117] | 0.55 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 15335, 65 15336, 199 15337, 100 199, 195 255, 127 0, 206 52863, 215 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3012] | 0.54 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 25302, 93 25303, 97 25304, 134 34517, 229 25305, 33 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2008] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 19283, 221 19284, 89 19285, 0 57, 234 313, 20 19286, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2540] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 900, 198 901, 93 902, 122 93, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3336] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 3604, 238 3605, 125 3606, 223 57213, 85 3607, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3451] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 37530, 200 37531, 240 37532, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4289] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 27248, 190 27249, 38 27250, 115 29547, 73 27251, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2650] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 22741, 222 22742, 199 22743, 38 9951, 42 22744, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4097] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 37686, 162 37687, 53 37688, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3636] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 43479, 32 43480, 73 43481, 202 344, 226 51785, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4131] | 0.39 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 36660, 166 36661, 116 36662, 36 116, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3837] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 18422, 173 18423, 2 18424, 244 62466, 148 18425, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4372] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 61451, 164 61452, 110 61453, 191 110, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4210] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 52350, 174 52351, 103 52352, 12 3175, 85 52353, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2285] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 36276, 228 36277, 61 36278, 201 61, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3992] | 0.58 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 56429, 161 56430, 171 56431, 201 171, 51 53, 205 54, 151 38861, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3224] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 10327, 230 10328, 168 10329, 242 168, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2541] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 50583, 198 50584, 207 50585, 19 207, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2126] | 0.49 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 44248, 193 44249, 68 44250, 116 68, 69 239, 215 240, 58 15063, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3924] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 34766, 185 34767, 67 34768, 226 58035, 240 34769, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3452] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 2573, 200 2574, 97 2575, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4211] | 0.55 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 2999, 174 3000, 198 3001, 4 1222, 149 3002, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4098] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 30426, 162 30427, 131 30428, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4440] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 1368, 180 1369, 113 1370, 158 113, 88 109, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2009] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 29703, 221 29704, 82 29705, 14 3657, 56 3913, 175 29706, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3637] | 0.57 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 2067, 32 2068, 144 2069, 169 487, 79 43408, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3337] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 43102, 238 43103, 3 43104, 215 55043, 51 43105, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4290] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 53892, 190 53893, 184 53894, 66 17082, 68 53895, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2651] | 0.54 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 49054, 222 49055, 123 49056, 192 49253, 142 49509, 108 49057, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2286] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 24582, 228 24583, 234 24584, 175 234, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4132] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 1919, 166 1920, 68 1921, 114 68, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4373] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 40219, 164 40220, 239 40221, 201 239, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3838] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 26116, 173 26117, 243 26118, 203 52211, 135 26119, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3225] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 2987, 230 2988, 19 2989, 108 19, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3118] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 21501, 65 21502, 14 21503, 72 14, 85 251, 216 252, 247 63448, 253 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3013] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 60982, 93 60983, 227 60984, 138 35389, 167 35645, 35 60985, 192 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json-i3453] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c8.json 43693, 200 43694, 77 43695, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json-i4099] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a2.json 13450, 162 13451, 240 13452, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2542] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 28652, 198 28653, 29 28654, 200 29, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4133] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 24551, 166 24552, 88 24553, 110 88, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3993] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 65084, 161 65085, 150 65086, 46 150, 153 237, 217 238, 191 49113, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4374] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 22070, 164 22071, 79 22072, 110 79, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3839] | 0.49 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 7796, 173 7797, 180 7798, 242 62132, 104 7799, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3925] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 17160, 185 17161, 198 17162, 92 23756, 154 17163, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2287] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 6839, 228 6840, 31 6841, 182 31, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2127] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 1565, 193 1566, 115 1567, 122 115, 32 138, 144 139, 50 12944, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2010] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 46831, 221 46832, 224 46833, 216 55487, 149 55743, 32 46834, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4441] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 7121, 180 7122, 8 7123, 1 8, 251 76, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4291] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 65444, 190 65445, 197 65446, 252 64670, 117 64926, 225 65447, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3338] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 9939, 238 9940, 145 9941, 208 53393, 44 9942, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3226] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 49, 230 50, 87 51, 7 87, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4511] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 1383, 188 1384, 188 1385, 97 25046, 225 1386, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4212] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 20820, 174 20821, 156 20822, 132 33948, 224 20823, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4100] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 37163, 166 37164, 237 37165, 188 237, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3014] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 51851, 93 51852, 219 51853, 193 49598, 235 49854, 76 51854, 230 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2543] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 26659, 198 26660, 143 26661, 190 143, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2652] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 22049, 222 22050, 32 22051, 160 41152, 117 22052, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3638] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 23561, 32 23562, 89 23563, 128 369, 145 32857, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4134] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 24769, 166 24770, 79 24771, 8 79, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4375] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 40729, 164 40730, 23 40731, 31 23, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3119] | 0.48 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 62437, 65 62438, 193 62439, 35 193, 70 235, 249 236, 58 15097, 204 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4442] | 0.53 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 13153, 180 13154, 98 13155, 141 98, 79 89, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3994] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 40381, 161 40382, 112 40383, 163 112, 137 202, 179 203, 185 47539, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2288] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 23738, 228 23739, 235 23740, 248 235, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3926] | 0.42 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 8902, 185 8903, 152 8904, 174 44658, 131 44914, 29 8905, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3227] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 12382, 230 12383, 245 12384, 184 245, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2128] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 20354, 193 20355, 251 20356, 214 251, 211 121, 76 122, 117 30028, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4292] | 0.58 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 54677, 190 54678, 165 54679, 184 47228, 234 47484, 63 54680, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3840] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 39081, 173 39082, 128 39083, 27 7040, 171 39084, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2011] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 37469, 221 37470, 131 37471, 48 12530, 185 37472, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4512] | 0.39 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 3868, 188 3869, 213 3870, 170 43608, 84 43864, 55 3871, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4213] | 0.29 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 58446, 174 58447, 135 58448, 128 32903, 31 58449, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4101] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 35107, 166 35108, 158 35109, 116 158, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2544] | 0.52 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 23260, 198 23261, 230 23262, 105 230, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3339] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 53301, 238 53302, 5 53303, 41 10501, 125 53304, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4135] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 7978, 166 7979, 106 7980, 144 106, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3015] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 30706, 93 30707, 95 30708, 185 47614, 187 30709, 131 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2653] | 0.62 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 5950, 222 5951, 216 5952, 19 5014, 234 5270, 205 5953, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3639] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 51588, 32 51589, 172 51590, 29 358, 212 7596, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4376] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 7250, 164 7251, 145 7252, 237 145, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3228] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 5756, 230 5757, 47 5758, 241 47, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json-i2289] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e4.json 13967, 228 13968, 250 13969, 29 250, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4102] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 45287, 166 45288, 88 45289, 216 88, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3995] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 29455, 161 29456, 172 29457, 141 172, 108 203, 255 204, 135 34815, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3927] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 47525, 185 47526, 49 47527, 40 10421, 239 47528, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3120] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 27672, 65 27673, 159 27674, 149 159, 110 113, 226 114, 96 24802, 134 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4214] | 0.53 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 45216, 174 45217, 75 45218, 156 40011, 34 45219, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2012] | 0.55 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 47890, 221 47891, 213 47892, 40 10473, 119 47893, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4443] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 2544, 180 2545, 121 2546, 21 121, 41 145, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3841] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 64753, 173 64754, 178 64755, 161 41394, 141 64756, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4513] | 0.54 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 38624, 188 38625, 119 38626, 115 29661, 129 38627, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2129] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 53274, 193 53275, 237 53276, 158 237, 19 47, 111 48, 14 3695, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3340] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 4368, 238 4369, 210 4370, 209 53714, 124 4371, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4136] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 19611, 166 19612, 16 19613, 211 16, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4293] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 17698, 190 17699, 31 17700, 208 53337, 236 17701, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3016] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 3902, 93 3903, 23 3904, 253 64829, 252 3905, 62 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2545] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 1340, 198 1341, 32 1342, 20 32, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4377] | 0.26 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 32973, 164 32974, 238 32975, 147 238, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4103] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 35146, 166 35147, 0 35148, 115 0, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3640] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 52965, 32 52966, 233 52967, 54 478, 205 14057, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4585] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 49542, 74 49543, 25 49544, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4444] | 0.49 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 28728, 180 28729, 45 28730, 63 45, 119 80, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3928] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 6086, 185 6087, 233 6088, 149 38242, 111 38498, 4 6089, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3229] | 0.28 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 53159, 230 53160, 119 53161, 71 119, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3121] | 0.57 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 5086, 65 5087, 54 5088, 6 54, 171 153, 149 154, 224 57493, 224 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2654] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 63118, 222 63119, 34 63120, 50 13049, 16 63121, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3996] | 0.61 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 35544, 161 35545, 34 35546, 31 34, 17 14, 160 15, 150 38560, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json-i3842] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ad.json 27948, 173 27949, 172 27950, 111 28588, 150 27951, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4137] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 38509, 166 38510, 233 38511, 19 233, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json-i2546] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c6.json 34104, 198 34105, 248 34106, 191 248, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4378] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 38562, 164 38563, 123 38564, 253 123, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4215] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 33199, 174 33200, 131 33201, 238 61059, 16 33202, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4586] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 3547, 74 3548, 83 3549, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3341] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 39644, 238 39645, 173 39646, 248 63661, 141 39647, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2013] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 28814, 221 28815, 78 28816, 110 28208, 26 28464, 165 28817, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4104] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 18017, 166 18018, 163 18019, 207 163, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3017] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 19202, 93 19203, 92 19204, 182 46694, 35 19205, 67 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4294] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 44327, 190 44328, 180 44329, 157 40447, 95 44330, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4514] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 41251, 188 41252, 110 41253, 191 49036, 231 41254, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3230] | 0.33 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 21482, 230 21483, 242 21484, 39 242, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2130] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 6666, 193 6667, 38 6668, 10 38, 53 185, 48 186, 155 39728, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3641] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 43849, 32 43850, 163 43851, 241 507, 219 61859, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4138] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 24853, 166 24854, 83 24855, 63 83, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3929] | 0.52 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 37884, 185 37885, 173 37886, 47 12187, 63 12443, 82 37887, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4587] | 0.30 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 50418, 74 50419, 120 50420, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4445] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 61988, 180 61989, 37 61990, 105 37, 201 255, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4379] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 30759, 164 30760, 55 30761, 119 55, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4658] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 15524, 86 15525, 164 15526, 59 164, 146 255, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2655] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 38723, 222 38724, 208 38725, 190 48824, 241 49080, 188 38726, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4729] | 0.53 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 16322, 78 16323, 135 16324, 239 61319, 228 16325, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3342] | 0.57 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 51921, 238 51922, 31 51923, 44 11295, 77 51924, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4216] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 57372, 174 57373, 248 57374, 9 2552, 217 57375, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4105] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 55725, 166 55726, 118 55727, 129 118, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3122] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 49804, 65 49805, 152 49806, 197 152, 211 105, 168 106, 24 6312, 89 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3231] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 35715, 230 35716, 145 35717, 155 145, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2014] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 45663, 221 45664, 145 45665, 76 19664, 50 45666, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4295] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 17133, 190 17134, 123 17135, 49 12607, 252 12863, 191 17136, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4515] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 3934, 188 3935, 164 3936, 13 3535, 178 3937, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3018] | 0.51 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 19546, 93 19547, 163 19548, 69 17862, 102 19549, 85 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3997] | 0.48 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 60684, 161 60685, 27 60686, 118 27, 231 254, 4 255, 42 10756, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3642] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 61157, 32 61158, 79 61159, 137 390, 203 35151, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4588] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 50390, 74 50391, 214 50392, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4139] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 21844, 166 21845, 226 21846, 0 226, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2131] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 20191, 193 20192, 107 20193, 95 107, 52 176, 167 177, 103 26535, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4446] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 12570, 180 12571, 184 12572, 118 184, 236 251, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4380] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 56717, 164 56718, 65 56719, 59 65, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3930] | 0.47 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 33586, 185 33587, 143 33588, 196 50368, 70 33589, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4589] | 0.31 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 27600, 74 27601, 157 27602, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4659] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 6915, 86 6916, 94 6917, 180 94, 6 216, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4106] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 13220, 166 13221, 150 13222, 12 150, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4217] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 11833, 174 11834, 194 11835, 145 37314, 107 11836, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3232] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 15686, 230 15687, 21 15688, 61 21, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2656] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 44582, 222 44583, 236 44584, 232 59485, 168 59741, 225 44585, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4296] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 18379, 190 18380, 219 18381, 232 59420, 214 59676, 152 18382, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2015] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 47713, 221 47714, 221 47715, 198 50850, 110 51106, 178 47716, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4730] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 30474, 78 30475, 180 30476, 139 35764, 90 30477, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4140] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 3504, 166 3505, 57 3506, 165 57, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4516] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 20309, 188 20310, 77 20311, 72 18667, 141 20312, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4381] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 16281, 164 16282, 186 16283, 145 186, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3343] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 40676, 238 40677, 133 40678, 102 26245, 56 40679, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3998] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 58662, 161 58663, 27 58664, 135 27, 181 169, 78 170, 22 5710, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3123] | 0.46 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 27879, 65 27880, 19 27881, 182 19, 29 205, 135 206, 237 60807, 137 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3019] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 2234, 93 2235, 88 2236, 48 12481, 141 2237, 97 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4107] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 15163, 166 15164, 228 15165, 245 228, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4590] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 22836, 74 22837, 90 22838, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3643] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 25069, 32 25070, 74 25071, 188 346, 1 48202, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4218] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 4575, 174 4576, 77 4577, 32 8269, 72 4578, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2132] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 47601, 193 47602, 8 47603, 45 8, 153 191, 77 192, 207 53069, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4447] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 10911, 180 10912, 197 10913, 127 197, 6 1, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3233] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 21969, 230 21970, 163 21971, 6 163, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4660] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 30008, 86 30009, 130 30010, 197 130, 78 174, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3931] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 57259, 185 57260, 44 57261, 254 65058, 50 65314, 227 57262, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2657] | 0.54 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 29768, 222 29769, 169 29770, 17 4566, 40 29771, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4591] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 40756, 74 40757, 208 40758, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4297] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 41873, 190 41874, 7 41875, 63 16259, 29 41876, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4141] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 18464, 166 18465, 203 18466, 26 203, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4382] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 64252, 164 64253, 227 64254, 106 227, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2016] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 64964, 221 64965, 158 64966, 22 5871, 151 64967, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4731] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 20350, 78 20351, 247 20352, 131 33783, 86 20353, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4517] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 43346, 188 43347, 216 43348, 114 29382, 151 29638, 238 43349, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4108] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 34727, 166 34728, 35 34729, 193 35, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3344] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 53476, 238 53477, 145 53478, 94 24209, 227 53479, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3020] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 37130, 93 37131, 110 37132, 245 62757, 229 63013, 141 37133, 10 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4448] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 58013, 180 58014, 73 58015, 116 73, 106 40, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json-i3999] | 0.59 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a1.json 14279, 161 14280, 132 14281, 139 132, 220 179, 115 180, 53 13683, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3124] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 2091, 65 2092, 119 2093, 150 119, 252 48, 217 49, 188 48345, 169 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3644] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 2556, 32 2557, 96 2558, 115 493, 151 29536, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2133] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 34138, 193 34139, 85 34140, 43 85, 247 146, 47 147, 153 39215, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4219] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 26714, 174 26715, 98 26716, 136 34914, 65 26717, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4661] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 61320, 86 61321, 135 61322, 183 135, 0 137, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4592] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 53088, 74 53089, 196 53090, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4142] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 60639, 166 60640, 206 60641, 85 206, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3932] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 45508, 185 45509, 76 45510, 132 33852, 17 34108, 22 45511, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3234] | 0.24 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 36760, 230 36761, 79 36762, 46 79, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4383] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 53182, 164 53183, 40 53184, 63 40, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4298] | 0.55 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 38982, 190 38983, 130 38984, 7 2016, 32 38985, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2017] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 23611, 221 23612, 63 23613, 245 62916, 15 23614, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2658] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 59833, 222 59834, 252 59835, 225 57605, 22 57861, 68 59836, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4109] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 13576, 166 13577, 35 13578, 60 35, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4732] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 50879, 78 50880, 40 50881, 24 6184, 232 50882, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4518] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 15460, 188 15461, 249 15462, 136 34957, 198 35213, 72 15463, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3345] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 61657, 238 61658, 101 61659, 217 55653, 163 61660, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3021] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 23922, 93 23923, 93 23924, 132 33878, 107 34134, 240 23925, 221 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4593] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 17216, 74 17217, 198 17218, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4143] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 37384, 166 37385, 199 37386, 105 199, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3125] | 0.55 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 59938, 65 59939, 27 59940, 122 27, 74 150, 174 151, 165 42414, 110 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4449] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 35438, 180 35439, 39 35440, 83 39, 110 141, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3235] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 48787, 230 48788, 78 48789, 121 78, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4662] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 42324, 86 42325, 11 42326, 107 11, 180 129, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4798] | 0.50 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 25992, 94 25993, 92 25994, 3 880, 3 25995, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3645] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 5752, 32 5753, 113 5754, 83 274, 110 21361, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4000] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 9023, 177 9024, 113 9025, 139 113, 169 114, 89 22867, 214 23123, 37 base: 113 lo: 169 hi: 89 deref_base: 22953 y_register: 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4220] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 43828, 174 43829, 218 43830, 71 18394, 122 43831, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4384] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 18185, 164 18186, 103 18187, 32 103, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json-i3933] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b9.json 59870, 185 59871, 217 59872, 135 34775, 171 35031, 94 59873, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2018] | 0.53 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 47059, 221 47060, 37 47061, 172 44211, 93 47062, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2134] | 0.59 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 44475, 193 44476, 21 44477, 157 21, 187 155, 53 156, 130 33333, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4594] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 34388, 74 34389, 223 34390, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2659] | 0.57 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 4192, 222 4193, 241 4194, 95 24453, 90 24709, 164 4195, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4733] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 44151, 78 44152, 73 44153, 62 15945, 112 44154, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4519] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 18914, 188 18915, 28 18916, 93 23897, 200 18917, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3346] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 47430, 238 47431, 142 47432, 51 13198, 130 47433, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4144] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 38943, 166 38944, 107 38945, 147 107, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4299] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 14183, 190 14184, 235 14185, 77 19714, 23 19970, 234 14186, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json-i3022] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5d.json 13910, 93 13911, 124 13912, 70 17926, 234 18182, 45 13913, 149 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3236] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 24066, 230 24067, 25 24068, 91 25, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4450] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 26394, 172 26395, 244 26396, 199 51188, 14 26397, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4663] | 0.53 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 7498, 86 7499, 56 7500, 90 56, 103 68, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4595] | 0.33 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 22840, 74 22841, 151 22842, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4001] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 57015, 177 57016, 51 57017, 66 51, 237 52, 17 4491, 180 4747, 116 base: 51 lo: 237 hi: 17 deref_base: 4589 y_register: 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3646] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 28017, 32 28018, 230 28019, 57 406, 196 14822, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4221] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 65125, 174 65126, 30 65127, 188 48158, 148 65128, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4385] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 61714, 164 61715, 25 61716, 238 25, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3126] | 0.58 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 24749, 65 24750, 253 24751, 233 253, 155 106, 255 107, 47 12287, 34 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4865] | 0.32 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 21279, 9 21280, 176 21281, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4799] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 8104, 94 8105, 113 8106, 92 23766, 149 8107, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4734] | 0.55 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 23409, 78 23410, 237 23411, 191 49133, 208 23412, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4145] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 25042, 166 25043, 121 25044, 238 121, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4520] | 0.51 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 40388, 188 40389, 3 40390, 166 42651, 27 40391, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json-i2019] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/dd.json 26952, 221 26953, 158 26954, 162 41656, 175 26955, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4931] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 48146, 5 48147, 229 48148, 246 229, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3237] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 56106, 230 56107, 147 56108, 103 147, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4300] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 16399, 160 16400, 60 16401, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4596] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 42224, 74 42225, 130 42226, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3347] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 44338, 238 44339, 112 44340, 42 10864, 146 44341, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2660] | 0.45 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 30312, 222 30313, 64 30314, 224 57488, 142 30315, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2135] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 7931, 193 7932, 192 7933, 173 192, 121 67, 195 68, 121 31171, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4451] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 17131, 172 17132, 240 17133, 225 57840, 244 17134, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4386] | 0.24 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 42940, 164 42941, 69 42942, 159 69, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4866] | 0.28 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 53777, 9 53778, 141 53779, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4222] | 0.25 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 60617, 174 60618, 69 60619, 207 53061, 46 60620, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3647] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 12067, 32 12068, 232 12069, 105 452, 52 27112, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4800] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 5126, 234 5127, 114 5128, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4664] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 29104, 86 29105, 244 29106, 59 244, 94 250, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4301] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 14039, 160 14040, 17 14041, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4597] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 36935, 74 36936, 69 36937, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4002] | 0.47 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 1215, 177 1216, 243 1217, 16 243, 114 244, 158 40459, 189 40715, 6 base: 243 lo: 114 hi: 158 deref_base: 40562 y_register: 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4146] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 54099, 166 54100, 228 54101, 129 228, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4387] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 58225, 164 58226, 109 58227, 184 109, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3127] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 54770, 65 54771, 156 54772, 202 156, 127 95, 147 96, 47 12179, 212 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4995] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 46654, 21 46655, 177 46656, 48 177, 86 54, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3238] | 0.52 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 41011, 230 41012, 108 41013, 197 108, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4932] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 27744, 5 27745, 110 27746, 170 110, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4867] | 0.22 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 35481, 9 35482, 163 35483, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4735] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 3871, 78 3872, 224 3873, 203 52192, 177 3874, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4521] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 10711, 188 10712, 100 10713, 229 58869, 191 10714, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4223] | 0.49 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 61085, 174 61086, 211 61087, 80 20691, 65 61088, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3348] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 32878, 238 32879, 183 32880, 143 36791, 3 32881, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4452] | 0.27 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 49477, 172 49478, 48 49479, 212 54320, 24 49480, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2661] | 0.59 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 34362, 222 34363, 173 34364, 204 52235, 219 52491, 106 34365, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2136] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 34895, 193 34896, 8 34897, 251 8, 38 101, 185 102, 85 21945, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4302] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 32245, 160 32246, 34 32247, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4147] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 42161, 166 42162, 56 42163, 251 56, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4801] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 3145, 234 3146, 115 3147, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4868] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 395, 9 396, 3 397, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3648] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 39676, 32 39677, 22 39678, 169 321, 254 43286, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4598] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 37131, 74 37132, 222 37133, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4665] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 59585, 86 59586, 31 59587, 21 31, 125 153, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4388] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 51874, 164 51875, 45 51876, 11 45, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4003] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 50871, 177 50872, 224 50873, 230 224, 152 225, 121 31104, 187 31360, 126 base: 224 lo: 152 hi: 121 deref_base: 31128 y_register: 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4933] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 35847, 5 35848, 129 35849, 202 129, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4453] | 0.54 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 49926, 172 49927, 45 49928, 106 27181, 113 49929, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4802] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 21957, 234 21958, 92 21959, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4996] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 63511, 21 63512, 182 63513, 222 182, 78 37, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4303] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 49111, 160 49112, 172 49113, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3128] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 31958, 65 31959, 125 31960, 145 125, 34 203, 0 204, 114 29184, 110 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4522] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 11764, 188 11765, 107 11766, 75 19284, 124 19540, 38 11767, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4736] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 40222, 78 40223, 132 40224, 136 34948, 199 40225, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4599] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 33510, 74 33511, 168 33512, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4148] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 12782, 166 12783, 185 12784, 242 185, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3239] | 0.27 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 36848, 230 36849, 34 36850, 16 34, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json-i3349] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ee.json 32962, 238 32963, 183 32964, 140 36023, 24 32965, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4224] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 9018, 174 9019, 152 9020, 90 23192, 39 9021, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2137] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 12517, 193 12518, 76 12519, 19 76, 114 12, 205 13, 139 35789, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4869] | 0.18 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 22712, 9 22713, 220 22714, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4934] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 6770, 5 6771, 230 6772, 245 230, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4389] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 39911, 164 39912, 83 39913, 224 83, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json-i3649] | 0.48 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/20.json 31911, 32 31912, 237 31913, 90 443, 215 23277, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2662] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 33564, 222 33565, 60 33566, 247 63392, 232 33567, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4666] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 3828, 86 3829, 121 3830, 75 121, 17 139, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4304] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 20223, 160 20224, 187 20225, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4803] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 22430, 234 22431, 17 22432, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4870] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 32075, 9 32076, 12 32077, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3240] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 42393, 230 42394, 7 42395, 85 7, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4600] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 16373, 70 16374, 195 16375, 146 195, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4997] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 37575, 21 37576, 104 37577, 14 104, 156 210, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4523] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 5288, 188 5289, 76 5290, 50 13018, 188 5291, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3129] | 0.58 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 3192, 65 3193, 121 3194, 117 121, 141 42, 220 43, 67 17372, 136 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json-i4149] | 0.39 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a6.json 14220, 166 14221, 39 14222, 78 39, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4004] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 44250, 177 44251, 125 44252, 55 125, 230 126, 214 54904, 102 55160, 111 base: 125 lo: 230 hi: 214 deref_base: 55014 y_register: 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4737] | 0.55 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 53444, 78 53445, 189 53446, 3 957, 161 53447, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4454] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 20212, 172 20213, 53 20214, 71 18229, 242 20215, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5057] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 51693, 29 51694, 1 51695, 95 24551, 213 51696, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4305] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 58627, 160 58628, 193 58629, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4225] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 11071, 174 11072, 216 11073, 223 57304, 103 11074, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4804] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 60947, 234 60948, 162 60949, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4935] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 30704, 5 30705, 64 30706, 205 64, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4871] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 64109, 9 64110, 68 64111, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4390] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 47420, 164 47421, 105 47422, 226 105, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2138] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 43545, 193 43546, 117 43547, 76 117, 46 51, 184 52, 44 11448, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4667] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 29057, 86 29058, 138 29059, 242 138, 95 65, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3241] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 23012, 230 23013, 151 23014, 188 151, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3650] | 0.23 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 33710, 169 33711, 195 33712, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2663] | 0.43 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 44283, 222 44284, 139 44285, 77 19912, 44 44286, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4601] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 4179, 70 4180, 19 4181, 194 19, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4226] | 0.48 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 35034, 174 35035, 70 35036, 148 37958, 248 35037, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4524] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 45661, 188 45662, 180 45663, 66 16993, 95 17249, 123 45664, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4150] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 41544, 182 41545, 125 41546, 26 125, 202 223, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4998] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 557, 21 558, 2 559, 122 2, 61 60, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4872] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 57480, 9 57481, 137 57482, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4805] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 29221, 234 29222, 251 29223, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4306] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 44258, 160 44259, 1 44260, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4455] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 27698, 172 27699, 200 27700, 98 25288, 33 27701, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4936] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 4806, 5 4807, 106 4808, 82 106, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4005] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 58338, 177 58339, 86 58340, 31 86, 159 87, 97 24912, 97 25168, 224 base: 86 lo: 159 hi: 97 deref_base: 24991 y_register: 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3651] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 8510, 169 8511, 93 8512, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3130] | 0.55 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 23110, 65 23111, 21 23112, 139 21, 162 151, 160 152, 195 50080, 161 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4391] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 63829, 164 63830, 204 63831, 196 204, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5058] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 61002, 29 61003, 28 61004, 33 8699, 11 61005, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4738] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 6331, 78 6332, 21 6333, 32 8213, 14 6334, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4806] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 7620, 234 7621, 192 7622, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4668] | 0.53 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 22857, 86 22858, 14 22859, 112 14, 62 218, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4307] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 34323, 160 34324, 172 34325, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3242] | 0.52 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 61437, 230 61438, 172 61439, 146 172, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4873] | 0.19 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 31726, 9 31727, 132 31728, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4456] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 51084, 172 51085, 250 51086, 138 35578, 131 51087, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2664] | 0.52 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 32162, 222 32163, 182 32164, 51 13246, 233 32165, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4602] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 34260, 70 34261, 85 34262, 6 85, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4525] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 37537, 188 37538, 140 37539, 203 52028, 155 52284, 219 37540, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2139] | 0.47 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 14493, 193 14494, 49 14495, 207 49, 55 183, 128 184, 179 45952, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4937] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 53225, 5 53226, 155 53227, 137 155, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4151] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 36157, 182 36158, 182 36159, 60 182, 201 248, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4392] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 48845, 164 48846, 88 48847, 110 88, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4999] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 14391, 21 14392, 155 14393, 68 155, 204 126, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4227] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 61536, 174 61537, 39 61538, 238 60967, 229 61539, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json-i3652] | 0.18 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a9.json 49611, 169 49612, 237 49613, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4874] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 9530, 9 9531, 58 9532, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4807] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 23045, 234 23046, 199 23047, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4739] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 43022, 78 43023, 29 43024, 147 37661, 138 43025, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4308] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 27725, 160 27726, 128 27727, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4006] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 61255, 177 61256, 148 61257, 42 148, 205 149, 196 50263, 6 50519, 136 base: 148 lo: 205 hi: 196 deref_base: 50381 y_register: 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5059] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 9329, 29 9330, 199 9331, 163 41794, 63 42050, 141 9332, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5118] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 55967, 25 55968, 175 55969, 59 15252, 48 15508, 109 55970, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3131] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 57727, 65 57728, 64 57729, 94 64, 49 76, 84 77, 57 14676, 254 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4603] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 49366, 70 49367, 100 49368, 51 100, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4152] | 0.41 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 4417, 182 4418, 231 4419, 53 231, 205 165, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4938] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 61608, 5 61609, 127 61610, 9 127, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4669] | 0.47 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 549, 86 550, 46 551, 27 46, 131 139, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4526] | 0.57 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 28320, 188 28321, 137 28322, 241 61852, 7 28323, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4393] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 26753, 164 26754, 50 26755, 240 50, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json-i3243] | 0.22 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e6.json 7590, 230 7591, 108 7592, 55 108, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4875] | 0.25 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 3713, 9 3714, 215 3715, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4457] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 37001, 172 37002, 77 37003, 2 589, 15 37004, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4808] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 25225, 234 25226, 237 25227, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4309] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 25123, 160 25124, 210 25125, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5000] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 29671, 13 29672, 203 29673, 253 64971, 245 29674, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2665] | 0.48 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 46540, 222 46541, 191 46542, 114 29406, 204 46543, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2140] | 0.53 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 3626, 193 3627, 144 3628, 110 144, 112 109, 104 110, 101 25960, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4228] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 40936, 174 40937, 25 40938, 193 49433, 100 40939, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5177] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 45872, 1 45873, 247 45874, 173 247, 137 150, 95 151, 206 52831, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4939] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 16800, 5 16801, 244 16802, 88 244, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5060] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 13697, 29 13698, 206 13699, 11 2877, 218 3133, 85 13700, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4740] | 0.48 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 41012, 78 41013, 253 41014, 20 5373, 77 41015, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4007] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 53225, 177 53226, 190 53227, 254 190, 79 191, 51 13124, 166 13380, 86 base: 190 lo: 79 hi: 51 deref_base: 13135 y_register: 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4876] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 46351, 9 46352, 152 46353, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5119] | 0.51 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 5843, 25 5844, 21 5845, 133 34060, 90 34316, 148 5846, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5001] | 0.51 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 56027, 13 56028, 216 56029, 17 4568, 113 56030, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4394] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 42936, 164 42937, 138 42938, 48 138, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4604] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 37898, 70 37899, 211 37900, 1 211, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4809] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 16582, 234 16583, 234 16584, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3132] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 22885, 65 22886, 48 22887, 112 48, 26 102, 81 103, 22 5713, 64 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4153] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 23286, 182 23287, 117 23288, 237 117, 26 79, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4310] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 31640, 160 31641, 41 31642, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4458] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 28597, 172 28598, 17 28599, 252 64529, 147 28600, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4670] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 22534, 86 22535, 8 22536, 175 8, 83 174, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4229] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 53054, 174 53055, 32 53056, 144 36896, 106 53057, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2666] | 0.57 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 5405, 222 5406, 213 5407, 127 32531, 174 32787, 140 5408, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4810] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 33286, 234 33287, 251 33288, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4527] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 36595, 188 36596, 179 36597, 105 27017, 246 27273, 186 36598, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4877] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 50906, 9 50907, 100 50908, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2141] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 17115, 193 17116, 107 17117, 146 107, 85 33, 65 34, 53 13633, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4940] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 62600, 5 62601, 31 62602, 58 31, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5061] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 32091, 29 32092, 185 32093, 80 20629, 167 20885, 109 32094, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4311] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 36069, 160 36070, 13 36071, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4741] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 43246, 78 43247, 221 43248, 219 56285, 48 43249, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4395] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 46842, 164 46843, 187 46844, 164 187, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4008] | 0.50 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 62925, 177 62926, 206 62927, 46 206, 83 207, 30 7822, 58 base: 206 lo: 83 hi: 30 deref_base: 7763 y_register: 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4605] | 0.44 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 14496, 70 14497, 115 14498, 112 115, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4878] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 7263, 9 7264, 151 7265, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5120] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 53561, 25 53562, 166 53563, 26 6860, 170 53564, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4154] | 0.50 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 46436, 182 46437, 159 46438, 212 159, 14 168, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5178] | 0.55 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 19024, 1 19025, 69 19026, 61 69, 55 213, 117 214, 39 10101, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3133] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 23395, 65 23396, 164 23397, 79 164, 225 209, 189 210, 12 3261, 126 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4671] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 15493, 86 15494, 192 15495, 167 192, 6 127, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4230] | 0.48 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 22972, 174 22973, 54 22974, 54 13878, 243 22975, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5002] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 7026, 13 7027, 244 7028, 224 57588, 167 7029, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4459] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 14596, 172 14597, 228 14598, 126 32484, 137 14599, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4811] | 0.18 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 12327, 234 12328, 220 12329, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4312] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 21984, 160 21985, 60 21986, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4941] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 4020, 5 4021, 126 4022, 56 126, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4528] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 37985, 188 37986, 128 37987, 2 546, 51 802, 153 37988, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4812] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 22351, 234 22352, 121 22353, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2142] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 53720, 193 53721, 207 53722, 190 207, 95 150, 191 151, 62 16063, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5062] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 17754, 29 17755, 249 17756, 88 22561, 125 22817, 181 17757, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4396] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 55799, 164 55800, 45 55801, 30 45, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2667] | 0.47 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 22045, 222 22046, 0 22047, 238 61158, 199 22048, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4879] | 0.20 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 31537, 9 31538, 90 31539, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4460] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 58417, 172 58418, 129 58419, 150 38529, 85 58420, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4742] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 11699, 78 11700, 132 11701, 135 34692, 249 11702, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4606] | 0.43 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 15096, 70 15097, 136 15098, 146 136, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4313] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 42724, 160 42725, 213 42726, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5121] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 21231, 25 21232, 27 21233, 189 48556, 87 21234, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5003] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 16147, 13 16148, 124 16149, 206 52860, 204 16150, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4009] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 45121, 177 45122, 39 45123, 79 39, 131 40, 63 16362, 198 base: 39 lo: 131 hi: 63 deref_base: 16259 y_register: 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4672] | 0.53 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 52663, 86 52664, 173 52665, 59 173, 189 93, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4942] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 1186, 5 1187, 37 1188, 47 37, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4155] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 30697, 182 30698, 250 30699, 212 250, 152 221, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4880] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 3437, 9 3438, 56 3439, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4231] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 2982, 174 2983, 247 2984, 37 9719, 21 2985, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4397] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 65442, 164 65443, 186 65444, 218 186, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5179] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 25913, 1 25914, 176 25915, 166 176, 36 127, 163 128, 56 14499, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json-i3134] | 0.59 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/41.json 51489, 65 51490, 171 51491, 204 171, 44 234, 129 235, 63 16257, 195 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4314] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 294, 160 295, 182 296, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4813] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 6391, 234 6392, 188 6393, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4529] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 28140, 188 28141, 55 28142, 30 7923, 68 28143, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5063] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 54908, 29 54909, 55 54910, 96 24770, 244 54911, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2668] | 0.45 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 13819, 222 13820, 15 13821, 53 13723, 110 13822, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4743] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 57987, 78 57988, 196 57989, 8 2244, 52 57990, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4156] | 0.51 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 4989, 182 4990, 37 4991, 95 37, 239 1, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4461] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 65037, 172 65038, 209 65039, 10 2769, 12 65040, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4814] | 0.30 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 20820, 234 20821, 147 20822, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2143] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 53896, 193 53897, 158 53898, 173 158, 85 90, 177 91, 39 10161, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4607] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 23616, 70 23617, 93 23618, 157 93, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4943] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 1758, 5 1759, 209 1760, 173 209, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5004] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 18788, 13 18789, 32 18790, 146 37408, 163 18791, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5122] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 9166, 25 9167, 102 9168, 231 59382, 149 9169, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4010] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 5902, 177 5903, 97 5904, 117 97, 6 98, 55 14148, 67 base: 97 lo: 6 hi: 55 deref_base: 14086 y_register: 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4881] | 0.20 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 17308, 9 17309, 69 17310, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4398] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 63936, 164 63937, 89 63938, 23 89, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4232] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 56388, 174 56389, 76 56390, 31 8012, 64 56391, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4315] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 60791, 160 60792, 239 60793, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4673] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 28010, 86 28011, 69 28012, 203 69, 53 249, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5180] | 0.59 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 24802, 1 24803, 136 24804, 88 136, 222 36, 132 37, 236 60548, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4530] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 39872, 188 39873, 178 39874, 193 49462, 64 49718, 50 39875, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4944] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 32817, 5 32818, 130 32819, 104 130, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4882] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 27013, 9 27014, 21 27015, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4608] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 20632, 70 20633, 117 20634, 107 117, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5064] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 51177, 29 51178, 89 51179, 169 43322, 85 43578, 125 51180, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4815] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 17888, 234 17889, 46 17890, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4316] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 50903, 160 50904, 11 50905, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5235] | 0.52 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 52235, 17 52236, 212 52237, 95 212, 202 213, 165 42356, 245 42612, 239 base: 212 lo: 202 hi: 165 deref_base: 42442 y_register: 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4744] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 50267, 78 50268, 200 50269, 28 7368, 81 50270, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2669] | 0.55 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 24862, 222 24863, 212 24864, 88 22640, 138 22896, 153 24865, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4462] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 21401, 172 21402, 73 21403, 215 55113, 143 21404, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2144] | 0.62 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 23821, 193 23822, 31 23823, 210 31, 149 227, 31 228, 240 61471, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5123] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 50411, 25 50412, 114 50413, 78 20059, 243 20315, 208 50414, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5005] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 53661, 13 53662, 42 53663, 58 14890, 130 53664, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4399] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 49438, 164 49439, 254 49440, 5 254, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4157] | 0.47 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 6194, 182 6195, 31 6196, 43 31, 236 177, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4816] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 63981, 234 63982, 33 63983, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4233] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 34210, 174 34211, 245 34212, 146 37621, 28 34213, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4883] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 56654, 9 56655, 202 56656, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4674] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 1091, 86 1092, 121 1093, 233 121, 193 7, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4945] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 31562, 5 31563, 114 31564, 223 114, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4011] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 46188, 177 46189, 186 46190, 42 186, 105 187, 110 28247, 20 28503, 155 base: 186 lo: 105 hi: 110 deref_base: 28265 y_register: 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4317] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 11401, 160 11402, 68 11403, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5065] | 0.53 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 14303, 29 14304, 61 14305, 178 45750, 48 14306, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4531] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 65301, 188 65302, 217 65303, 71 18180, 115 18436, 174 65304, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4609] | 0.53 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 52626, 70 52627, 209 52628, 247 209, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5006] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 4941, 13 4942, 105 4943, 162 41577, 54 4944, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4745] | 0.54 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 63279, 78 63280, 157 63281, 158 40605, 163 63282, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5181] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 61195, 1 61196, 15 61197, 160 15, 200 84, 117 85, 23 6005, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4884] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 61257, 9 61258, 155 61259, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4400] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 16335, 180 16336, 107 16337, 123 107, 245 82, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5124] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 54777, 25 54778, 195 54779, 123 31514, 240 31770, 227 54780, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4463] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 8632, 172 8633, 195 8634, 106 27331, 35 8635, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4318] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 8282, 160 8283, 202 8284, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5236] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 38202, 17 38203, 152 38204, 234 152, 112 153, 10 2570, 55 2826, 50 base: 152 lo: 112 hi: 10 deref_base: 2672 y_register: 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4817] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 59673, 234 59674, 69 59675, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4946] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 46788, 5 46789, 197 46790, 251 197, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4158] | 0.39 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 57771, 182 57772, 119 57773, 39 119, 55 239, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json-i2670] | 0.46 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/de.json 33596, 222 33597, 220 33598, 188 48156, 55 48412, 138 33599, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4234] | 0.27 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 20925, 174 20926, 4 20927, 177 45316, 86 20928, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4675] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 53501, 86 53502, 10 53503, 139 10, 163 78, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4532] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 43739, 188 43740, 205 43741, 14 3720, 128 3976, 211 43742, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4012] | 0.57 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 44907, 177 44908, 45 44909, 88 45, 75 46, 5 1421, 81 base: 45 lo: 75 hi: 5 deref_base: 1355 y_register: 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2145] | 0.60 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 53880, 193 53881, 14 53882, 199 14, 102 183, 97 184, 242 62049, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4885] | 0.19 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 26058, 9 26059, 91 26060, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4818] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 28242, 234 28243, 36 28244, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5066] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 5766, 29 5767, 138 5768, 76 19456, 61 19712, 216 5769, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4610] | 0.27 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 43596, 70 43597, 172 43598, 222 172, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4319] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 3951, 160 3952, 168 3953, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4235] | 0.52 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 29809, 174 29810, 50 29811, 175 44850, 147 29812, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5125] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 52774, 25 52775, 77 52776, 154 39555, 219 52777, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4401] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 31348, 180 31349, 187 31350, 253 187, 7 206, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5007] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 59764, 13 59765, 120 59766, 188 48248, 30 59767, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4464] | 0.25 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 35219, 172 35220, 26 35221, 247 63258, 30 35222, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5182] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 35274, 1 35275, 139 35276, 214 139, 19 108, 236 109, 235 60396, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4947] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 25271, 5 25272, 206 25273, 223 206, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4886] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 59863, 9 59864, 196 59865, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4746] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 30054, 78 30055, 64 30056, 178 45632, 47 30057, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5237] | 0.53 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 12153, 17 12154, 240 12155, 119 240, 27 241, 198 50889, 244 base: 240 lo: 27 hi: 198 deref_base: 50715 y_register: 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4159] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 24279, 182 24280, 44 24281, 43 44, 61 65, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5291] | 0.22 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 4009, 72 4010, 157 4011, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4320] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 61838, 160 61839, 108 61840, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4533] | 0.53 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 56171, 188 56172, 135 56173, 118 30294, 59 30550, 130 56174, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4819] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 46574, 234 46575, 137 46576, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4676] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 41966, 86 41967, 179 41968, 107 179, 29 184, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4611] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 9482, 70 9483, 223 9484, 97 223, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4465] | 0.52 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 32683, 172 32684, 90 32685, 40 10330, 211 32686, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4887] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 16334, 9 16335, 196 16336, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4402] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 2505, 180 2506, 254 2507, 55 254, 144 96, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5067] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 31617, 29 31618, 43 31619, 91 23513, 201 31620, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4013] | 0.48 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 11696, 177 11697, 14 11698, 255 14, 21 15, 113 29009, 132 base: 14 lo: 21 hi: 113 deref_base: 28949 y_register: 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5292] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 55818, 72 55819, 205 55820, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4820] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 53156, 234 53157, 220 53158, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5008] | 0.24 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 48578, 13 48579, 81 48580, 19 4945, 38 48581, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4948] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 55478, 5 55479, 30 55480, 254 30, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2146] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 26342, 193 26343, 3 26344, 204 3, 229 199, 129 200, 53 13697, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4236] | 0.48 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 45517, 174 45518, 119 45519, 24 6263, 28 45520, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4747] | 0.41 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 28441, 78 28442, 25 28443, 33 8473, 239 28444, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4321] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 212, 160 213, 150 214, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5126] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 65051, 25 65052, 164 65053, 225 57838, 21 65054, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4160] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 51635, 182 51636, 94 51637, 229 94, 160 143, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4677] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 7684, 86 7685, 141 7686, 145 141, 75 2, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4888] | 0.32 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 17526, 9 17527, 0 17528, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5183] | 0.48 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 53340, 1 53341, 205 53342, 91 205, 104 152, 30 153, 75 19230, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5238] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 48882, 17 48883, 149 48884, 82 149, 88 150, 53 13674, 74 base: 149 lo: 88 hi: 53 deref_base: 13656 y_register: 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4612] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 49760, 70 49761, 201 49762, 68 201, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5009] | 0.51 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 9877, 13 9878, 148 9879, 75 19348, 219 9880, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4949] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 62954, 5 62955, 28 62956, 145 28, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4534] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 46257, 188 46258, 29 46259, 180 46324, 203 46260, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5293] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 33270, 72 33271, 29 33272, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4821] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 37717, 234 37718, 100 37719, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4322] | 0.28 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 8472, 160 8473, 33 8474, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4403] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 55786, 180 55787, 20 55788, 67 20, 63 127, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5068] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 65486, 29 65487, 120 65488, 99 25488, 202 65489, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4466] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 30807, 172 30808, 182 30809, 104 26806, 136 30810, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4161] | 0.56 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 57790, 182 57791, 116 57792, 29 116, 213 10, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4014] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 27055, 177 27056, 226 27057, 189 226, 191 227, 5 1409, 43 1665, 240 base: 226 lo: 191 hi: 5 deref_base: 1471 y_register: 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2147] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 3608, 193 3609, 161 3610, 83 161, 189 31, 172 32, 194 49836, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4889] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 5502, 9 5503, 111 5504, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4748] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 55750, 78 55751, 145 55752, 137 35217, 98 55753, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5127] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 42869, 25 42870, 109 42871, 56 14448, 215 42872, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4822] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 65107, 234 65108, 209 65109, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4237] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 23729, 174 23730, 173 23731, 192 49325, 5 23732, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4678] | 0.49 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 27238, 86 27239, 197 27240, 26 197, 202 211, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4613] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 15, 70 16, 78 17, 147 78, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4950] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 54719, 21 54720, 134 54721, 164 134, 232 20, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4323] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 25318, 160 25319, 69 25320, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5239] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 34139, 17 34140, 237 34141, 28 237, 107 238, 28 7243, 1 7499, 209 base: 237 lo: 107 hi: 28 deref_base: 7275 y_register: 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5294] | 0.23 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 64042, 72 64043, 174 64044, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5184] | 0.54 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 62421, 1 62422, 2 62423, 167 2, 176 126, 21 127, 55 14101, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4890] | 0.31 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 44072, 9 44073, 185 44074, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4535] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 17261, 188 17262, 197 17263, 240 61652, 202 17264, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5010] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 12358, 13 12359, 136 12360, 95 24456, 126 12361, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5069] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 6151, 29 6152, 252 6153, 142 36554, 83 36810, 95 6154, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4467] | 0.27 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 31464, 172 31465, 175 31466, 138 35503, 221 31467, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4238] | 0.49 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 13848, 174 13849, 178 13850, 191 49074, 81 13851, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4324] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 47519, 160 47520, 43 47521, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4404] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 54510, 180 54511, 177 54512, 168 177, 235 182, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4015] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 25509, 177 25510, 97 25511, 252 97, 105 98, 114 29310, 243 base: 97 lo: 105 hi: 114 deref_base: 29289 y_register: 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4823] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 64640, 234 64641, 242 64642, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4749] | 0.55 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 23832, 78 23833, 9 23834, 73 18697, 90 23835, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5295] | 0.32 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 36884, 72 36885, 202 36886, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4614] | 0.50 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 39180, 70 39181, 135 39182, 199 135, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4951] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 49604, 21 49605, 239 49606, 170 239, 85 177, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4162] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 29669, 182 29670, 41 29671, 221 41, 83 46, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5128] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 37499, 25 37500, 60 37501, 190 48804, 152 37502, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2148] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 43897, 193 43898, 89 43899, 243 89, 253 159, 37 160, 92 23589, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4891] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 42331, 9 42332, 170 42333, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5240] | 0.60 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 7063, 17 7064, 210 7065, 67 210, 195 211, 107 27515, 79 27771, 216 base: 210 lo: 195 hi: 107 deref_base: 27587 y_register: 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4679] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 1373, 86 1374, 27 1375, 5 27, 31 211, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4468] | 0.58 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 51840, 172 51841, 96 51842, 107 27488, 47 51843, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4824] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 19345, 234 19346, 68 19347, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4325] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 51792, 160 51793, 67 51794, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5011] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 64849, 13 64850, 49 64851, 91 23345, 242 64852, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5070] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 47641, 29 47642, 144 47643, 188 48199, 88 48455, 5 47644, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4405] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 39171, 180 39172, 153 39173, 82 153, 96 131, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4536] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 28246, 188 28247, 25 28248, 166 42499, 193 42755, 21 28249, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5185] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 40329, 1 40330, 184 40331, 92 184, 174 105, 9 106, 18 4617, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5296] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 41915, 72 41916, 112 41917, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4892] | 0.34 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 9349, 9 9350, 208 9351, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4952] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 34849, 21 34850, 40 34851, 172 40, 245 28, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4239] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 56428, 174 56429, 228 56430, 209 53732, 221 56431, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4016] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 25725, 177 25726, 62 25727, 245 62, 54 63, 252 64595, 166 base: 62 lo: 54 hi: 252 deref_base: 64566 y_register: 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5129] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 40165, 25 40166, 60 40167, 96 24759, 99 40168, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4163] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 54832, 182 54833, 38 54834, 21 38, 128 249, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4326] | 0.30 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 38230, 160 38231, 197 38232, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4825] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 5472, 234 5473, 244 5474, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4750] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 19524, 94 19525, 127 19526, 125 32200, 84 19527, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4615] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 13166, 70 13167, 200 13168, 198 200, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4680] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 56926, 86 56927, 9 56928, 181 9, 197 168, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json-i2149] | 0.55 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/c1.json 11117, 193 11118, 236 11119, 225 236, 90 182, 1 183, 167 42753, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5297] | 0.42 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 57586, 72 57587, 134 57588, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5012] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 14688, 13 14689, 188 14690, 32 8380, 66 14691, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4893] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 10827, 9 10828, 194 10829, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5071] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 31164, 29 31165, 207 31166, 196 50306, 7 50562, 88 31167, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4406] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 43046, 180 43047, 255 43048, 250 255, 118 7, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4826] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 43248, 234 43249, 158 43250, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4164] | 0.56 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 38128, 182 38129, 95 38130, 68 95, 177 192, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4537] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 17953, 188 17954, 233 17955, 133 34082, 139 34338, 143 17956, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5241] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 52725, 17 52726, 161 52727, 56 161, 142 162, 55 14184, 180 14440, 143 base: 161 lo: 142 hi: 55 deref_base: 14222 y_register: 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5186] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 10065, 1 10066, 214 10067, 183 214, 118 14, 29 15, 51 13085, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4469] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 4589, 172 4590, 205 4591, 167 42957, 231 4592, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4327] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 53982, 160 53983, 94 53984, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4616] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 57025, 70 57026, 52 57027, 46 52, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4240] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 36310, 174 36311, 234 36312, 94 24298, 18 36313, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4953] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 50341, 21 50342, 225 50343, 205 225, 153 114, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4017] | 0.55 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 13487, 177 13488, 205 13489, 196 205, 201 206, 0 151, 48 407, 81 base: 205 lo: 201 hi: 0 deref_base: 201 y_register: 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5130] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 30261, 25 30262, 213 30263, 62 15916, 17 16172, 106 30264, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4894] | 0.32 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 54768, 9 54769, 230 54770, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5013] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 49829, 13 49830, 255 49831, 121 31231, 19 49832, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4751] | 0.58 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 39059, 94 39060, 44 39061, 34 8809, 205 39062, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4681] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 33504, 86 33505, 64 33506, 87 64, 129 63, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4328] | 0.32 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 15342, 160 15343, 189 15344, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4827] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 50426, 234 50427, 38 50428, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5298] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 63599, 72 63600, 146 63601, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2150] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 53140, 209 53141, 137 53142, 165 137, 251 138, 215 55239, 161 55495, 196 base: 137 lo: 251 hi: 215 deref_base: 55291 y_register: 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4407] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 30758, 180 30759, 171 30760, 245 171, 98 193, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4538] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 21246, 188 21247, 174 21248, 32 8198, 1 8454, 234 21249, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4617] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 48842, 70 48843, 118 48844, 76 118, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5242] | 0.54 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 5871, 17 5872, 90 5873, 219 90, 198 91, 127 32577, 228 32833, 44 base: 90 lo: 198 hi: 127 deref_base: 32710 y_register: 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4470] | 0.46 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 56233, 172 56234, 190 56235, 138 35518, 98 56236, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5072] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 52327, 29 52328, 46 52329, 8 2286, 151 52330, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4241] | 0.26 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 43961, 174 43962, 76 43963, 250 64076, 145 43964, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4895] | 0.20 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 5376, 9 5377, 253 5378, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4828] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 40561, 234 40562, 159 40563, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4954] | 0.25 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 12813, 21 12814, 94 12815, 52 94, 184 12, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4165] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 20905, 182 20906, 247 20907, 136 247, 229 244, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5131] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 27471, 25 27472, 96 27473, 167 42806, 15 43062, 50 27474, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5187] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 50324, 1 50325, 89 50326, 111 89, 26 56, 80 57, 106 27216, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5299] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 58366, 72 58367, 29 58368, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4329] | 0.23 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 26337, 160 26338, 248 26339, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4682] | 0.51 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 64880, 86 64881, 79 64882, 167 79, 195 212, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4018] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 30116, 177 30117, 32 30118, 112 32, 141 33, 81 20925, 40 base: 32 lo: 141 hi: 81 deref_base: 20877 y_register: 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4896] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 55305, 9 55306, 59 55307, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5014] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 33571, 13 33572, 232 33573, 86 22248, 14 33574, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4242] | 0.56 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 26902, 174 26903, 103 26904, 179 45927, 237 26905, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4618] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 34597, 70 34598, 201 34599, 123 201, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4955] | 0.51 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 53912, 21 53913, 95 53914, 164 95, 3 131, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4752] | 0.48 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 4443, 94 4444, 246 4445, 93 23896, 47 24152, 82 4446, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2151] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 45848, 209 45849, 25 45850, 117 25, 197 26, 201 51540, 68 51796, 181 base: 25 lo: 197 hi: 201 deref_base: 51653 y_register: 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4539] | 0.56 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 27496, 188 27497, 199 27498, 198 50923, 37 27499, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4408] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 31651, 180 31652, 160 31653, 185 160, 83 172, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4330] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 57887, 160 57888, 248 57889, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4829] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 19478, 234 19479, 21 19480, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5073] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 35492, 29 35493, 6 35494, 36 9241, 196 35495, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4471] | 0.27 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 8530, 172 8531, 79 8532, 25 6479, 57 8533, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4166] | 0.47 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 13273, 182 13274, 119 13275, 46 119, 184 175, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5132] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 60364, 25 60365, 156 60366, 57 14684, 214 14940, 49 60367, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5243] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 49095, 17 49096, 86 49097, 178 86, 6 87, 3 872, 205 base: 86 lo: 6 hi: 3 deref_base: 774 y_register: 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4897] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 58627, 9 58628, 33 58629, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4830] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 6737, 234 6738, 14 6739, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5188] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 18555, 1 18556, 24 18557, 170 24, 210 212, 15 213, 81 20751, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5015] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 17601, 13 17602, 114 17603, 90 23154, 42 17604, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4019] | 0.57 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 33356, 177 33357, 129 33358, 222 129, 170 130, 170 43608, 223 43864, 15 base: 129 lo: 170 hi: 170 deref_base: 43690 y_register: 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4619] | 0.49 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 42556, 70 42557, 109 42558, 187 109, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4683] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 6489, 86 6490, 31 6491, 19 31, 226 51, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4472] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 24892, 172 24893, 235 24894, 120 30955, 110 24895, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4331] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 15609, 160 15610, 115 15611, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4956] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 294, 21 295, 55 296, 139 55, 52 3, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4753] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 64644, 94 64645, 206 64646, 225 57673, 73 57929, 90 64647, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4898] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 33395, 9 33396, 237 33397, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4409] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 9436, 180 9437, 170 9438, 241 170, 222 7, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4243] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 43955, 174 43956, 70 43957, 183 46918, 47 43958, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5074] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 5585, 29 5586, 120 5587, 212 54401, 43 5588, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2152] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 21728, 209 21729, 139 21730, 136 139, 48 140, 154 39440, 186 39696, 112 base: 139 lo: 48 hi: 154 deref_base: 39472 y_register: 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4540] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 20777, 188 20778, 53 20779, 54 14048, 72 20780, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4332] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 14190, 160 14191, 115 14192, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5244] | 0.58 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 32392, 17 32393, 35 32394, 98 35, 59 36, 22 5882, 192 base: 35 lo: 59 hi: 22 deref_base: 5691 y_register: 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4167] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 896, 182 897, 174 898, 218 174, 169 159, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4831] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 45677, 234 45678, 210 45679, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5133] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 36534, 25 36535, 214 36536, 82 21045, 55 21301, 224 36537, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4684] | 0.47 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 36394, 86 36395, 215 36396, 206 215, 188 225, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5016] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 17348, 13 17349, 16 17350, 114 29200, 184 17351, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5189] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 1026, 1 1027, 37 1028, 207 37, 80 101, 146 102, 241 61842, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4899] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 55561, 9 55562, 212 55563, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4620] | 0.29 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 14555, 70 14556, 53 14557, 234 53, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4473] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 1988, 172 1989, 120 1990, 148 38008, 94 1991, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4168] | 0.51 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 12352, 182 12353, 245 12354, 207 245, 234 180, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4832] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 23770, 234 23771, 252 23772, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4020] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 17897, 177 17898, 125 17899, 162 125, 148 126, 14 3738, 133 base: 125 lo: 148 hi: 14 deref_base: 3732 y_register: 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4754] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 58222, 94 58223, 37 58224, 199 51140, 189 58225, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4957] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 63223, 21 63224, 227 63225, 184 227, 227 94, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4410] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 44168, 180 44169, 51 44170, 31 51, 200 249, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4244] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 38714, 174 38715, 129 38716, 50 12929, 219 38717, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4333] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 36837, 160 36838, 126 36839, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2153] | 0.53 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 64545, 209 64546, 25 64547, 76 25, 227 26, 202 51742, 110 51998, 255 base: 25 lo: 227 hi: 202 deref_base: 51939 y_register: 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5075] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 5882, 29 5883, 159 5884, 231 59306, 252 5885, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4541] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 4499, 188 4500, 88 4501, 104 26793, 218 4502, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4900] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 3097, 5 3098, 101 3099, 156 101, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5134] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 59466, 25 59467, 190 59468, 177 45468, 0 45724, 241 59469, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4621] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 61349, 70 61350, 227 61351, 99 227, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4334] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 58054, 160 58055, 70 58056, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5190] | 0.60 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 11502, 1 11503, 29 11504, 146 29, 198 202, 216 203, 1 472, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5245] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 8742, 17 8743, 133 8744, 7 133, 165 134, 82 21128, 238 21384, 97 base: 133 lo: 165 hi: 82 deref_base: 21157 y_register: 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4833] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 12354, 234 12355, 183 12356, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5017] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 8053, 13 8054, 74 8055, 231 59210, 226 8056, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4685] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 19745, 86 19746, 67 19747, 99 67, 174 198, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4474] | 0.49 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 51416, 172 51417, 114 51418, 0 114, 209 51419, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4411] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 51296, 180 51297, 228 51298, 31 228, 187 25, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4958] | 0.28 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 43653, 21 43654, 213 43655, 62 213, 145 25, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5076] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 24683, 29 24684, 122 24685, 64 16454, 49 16710, 130 24686, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4755] | 0.54 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 32411, 94 32412, 70 32413, 171 43953, 118 32414, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4021] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 35179, 177 35180, 17 35181, 30 17, 17 18, 231 59250, 168 base: 17 lo: 17 hi: 231 deref_base: 59153 y_register: 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4245] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 11287, 174 11288, 78 11289, 101 25934, 160 11290, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4169] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 44267, 182 44268, 47 44269, 253 47, 10 89, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4542] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 55048, 188 55049, 124 55050, 228 58447, 240 58703, 226 55051, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4901] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 19785, 5 19786, 255 19787, 113 255, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4834] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 11528, 234 11529, 233 11530, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5018] | 0.51 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 36133, 13 36134, 59 36135, 232 59451, 208 36136, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2154] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 6867, 209 6868, 228 6869, 70 228, 61 229, 92 23694, 213 base: 228 lo: 61 hi: 92 deref_base: 23613 y_register: 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4622] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 18505, 70 18506, 38 18507, 216 38, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4335] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 62772, 160 62773, 225 62774, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5135] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 15528, 25 15529, 96 15530, 41 10518, 88 10774, 243 15531, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4959] | 0.53 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 21334, 21 21335, 37 21336, 85 37, 241 151, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5246] | 0.45 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 55615, 17 55616, 244 55617, 12 244, 239 245, 29 7458, 34 7714, 51 base: 244 lo: 239 hi: 29 deref_base: 7663 y_register: 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4686] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 47310, 86 47311, 192 47312, 138 192, 123 118, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4412] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 27130, 180 27131, 152 27132, 116 152, 211 112, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4336] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 813, 160 814, 112 815, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4835] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 48742, 234 48743, 159 48744, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4902] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 26365, 5 26366, 22 26367, 193 22, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5191] | 0.66 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 22579, 1 22580, 99 22581, 57 99, 130 130, 87 131, 66 16983, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json-i4022] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b1.json 4116, 177 4117, 131 4118, 5 131, 42 132, 169 43387, 29 base: 131 lo: 42 hi: 169 deref_base: 43306 y_register: 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4475] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 5847, 172 5848, 12 5849, 150 38412, 35 5850, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4543] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 30339, 188 30340, 82 30341, 88 22529, 157 22785, 9 30342, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4246] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 63295, 174 63296, 164 63297, 102 26276, 51 63298, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4170] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 43764, 182 43765, 28 43766, 245 28, 191 186, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4623] | 0.32 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 61580, 70 61581, 18 61582, 202 18, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4756] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 51446, 94 51447, 150 51448, 111 28668, 113 51449, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5077] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 20910, 29 20911, 115 20912, 72 18463, 69 18719, 223 20913, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5136] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 45292, 25 45293, 96 45294, 185 47589, 208 45295, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2155] | 0.59 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 53691, 209 53692, 229 53693, 123 229, 90 230, 84 21720, 139 base: 229 lo: 90 hi: 84 deref_base: 21594 y_register: 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4836] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 32485, 234 32486, 1 32487, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5019] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 38441, 13 38442, 110 38443, 214 54894, 221 38444, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4337] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 51919, 160 51920, 173 51921, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4247] | 0.51 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 45975, 174 45976, 92 45977, 230 58972, 92 45978, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4687] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 20680, 86 20681, 65 20682, 89 65, 15 109, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5247] | 0.58 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 42301, 17 42302, 29 42303, 53 29, 113 30, 104 26740, 228 base: 29 lo: 113 hi: 104 deref_base: 26737 y_register: 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4960] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 19711, 21 19712, 216 19713, 141 216, 162 120, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4903] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 30461, 5 30462, 1 30463, 228 1, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4413] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 31680, 180 31681, 121 31682, 80 121, 16 131, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4624] | 0.51 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 20900, 70 20901, 212 20902, 40 212, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4476] | 0.26 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 19229, 172 19230, 69 19231, 168 43077, 203 19232, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4544] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 5398, 188 5399, 78 5400, 211 54250, 199 5401, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4338] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 38733, 160 38734, 7 38735, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4171] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 677, 182 678, 192 679, 134 192, 232 38, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4837] | 0.26 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 18554, 234 18555, 116 18556, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4757] | 0.60 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 50181, 94 50182, 78 50183, 160 41089, 36 50184, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5137] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 65091, 25 65092, 28 65093, 136 34987, 208 65094, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5078] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 17941, 29 17942, 223 17943, 114 29432, 176 17944, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5020] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 41348, 13 41349, 161 41350, 247 63393, 184 41351, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5192] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 16764, 1 16765, 80 16766, 28 80, 78 148, 21 149, 184 47125, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4477] | 0.53 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 3489, 172 3490, 140 3491, 58 14988, 228 3492, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4904] | 0.24 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 52234, 5 52235, 108 52236, 251 108, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json-i2156] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/d1.json 51422, 209 51423, 27 51424, 161 27, 157 28, 177 45402, 102 45658, 87 base: 27 lo: 157 hi: 177 deref_base: 45469 y_register: 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4688] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 13765, 86 13766, 81 13767, 249 81, 149 194, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4339] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 4253, 160 4254, 11 4255, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4248] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 15029, 174 15030, 201 15031, 251 64457, 11 15032, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4414] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 20856, 180 20857, 206 20858, 81 206, 58 171, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4838] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 62663, 234 62664, 103 62665, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4961] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 18444, 21 18445, 182 18446, 1 182, 77 177, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4545] | 0.51 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 11903, 188 11904, 217 11905, 227 58171, 42 58427, 196 11906, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5021] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 2270, 13 2271, 209 2272, 42 10961, 42 2273, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5248] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 34565, 17 34566, 46 34567, 142 46, 1 47, 81 20894, 151 base: 46 lo: 1 hi: 81 deref_base: 20737 y_register: 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5138] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 60053, 25 60054, 249 60055, 229 58848, 108 59104, 251 60056, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4625] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 44516, 70 44517, 67 44518, 122 67, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4172] | 0.29 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 45863, 182 45864, 155 45865, 46 155, 47 91, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5079] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 6896, 29 6897, 75 6898, 57 14596, 160 14852, 63 6899, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4905] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 56975, 5 56976, 142 56977, 56 142, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4340] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 19011, 160 19012, 22 19013, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5193] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 24657, 1 24658, 165 24659, 220 165, 8 152, 176 153, 232 59568, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4839] | 0.25 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 29126, 234 29127, 188 29128, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4758] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 33560, 94 33561, 204 33562, 202 51782, 149 52038, 141 33563, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4626] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 23195, 70 23196, 37 23197, 120 37, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4415] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 32268, 180 32269, 17 32270, 151 17, 49 165, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json-i4249] | 0.25 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ae.json 57999, 174 58000, 4 58001, 241 61700, 71 58002, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4962] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 21360, 21 21361, 48 21362, 90 48, 146 200, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4478] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 1296, 172 1297, 204 1298, 51 13260, 151 1299, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4173] | 0.55 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 501, 182 502, 167 503, 83 167, 55 18, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4689] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 14552, 86 14553, 239 14554, 152 239, 167 248, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4906] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 42047, 5 42048, 222 42049, 183 222, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5249] | 0.43 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 26972, 17 26973, 9 26974, 191 9, 191 10, 93 24052, 31 base: 9 lo: 191 hi: 93 deref_base: 23999 y_register: 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4840] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 60402, 234 60403, 31 60404, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4546] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 61469, 188 61470, 136 61471, 68 17459, 37 17715, 112 61472, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5022] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 10461, 13 10462, 61 10463, 230 58941, 232 10464, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4341] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 27871, 160 27872, 80 27873, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5080] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 29673, 29 29674, 170 29675, 124 31798, 166 32054, 116 29676, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5139] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 34435, 25 34436, 21 34437, 39 10042, 85 34438, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4250] | 0.55 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 11406, 190 11407, 54 11408, 210 53948, 210 11409, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4627] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 24659, 70 24660, 192 24661, 139 192, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5194] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 59034, 1 59035, 239 59036, 63 239, 109 3, 62 4, 234 59966, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4759] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 18357, 94 18358, 7 18359, 233 59890, 15 18360, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4416] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 19242, 180 19243, 208 19244, 106 208, 26 168, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4342] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 55751, 160 55752, 145 55753, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4963] | 0.29 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 10283, 21 10284, 196 10285, 60 196, 63 1, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4479] | 0.31 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 43593, 172 43594, 141 43595, 144 37005, 49 43596, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4907] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 32231, 5 32232, 49 32233, 109 49, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4690] | 0.39 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 9795, 86 9796, 237 9797, 38 237, 138 155, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4841] | 0.19 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 29972, 234 29973, 63 29974, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5250] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 24483, 72 24484, 6 24485, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4174] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 48999, 182 49000, 23 49001, 114 23, 9 106, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4547] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 17927, 188 17928, 13 17929, 236 60488, 95 17930, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5023] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 19349, 13 19350, 23 19351, 178 45591, 75 19352, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5081] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 23937, 29 23938, 114 23939, 79 20265, 68 20521, 25 23940, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4628] | 0.49 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 2820, 70 2821, 164 2822, 158 164, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5140] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 57717, 25 57718, 245 57719, 155 39929, 151 57720, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4842] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 9833, 234 9834, 211 9835, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4964] | 0.51 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 53719, 21 53720, 184 53721, 115 184, 71 255, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4480] | 0.52 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 38262, 172 38263, 91 38264, 137 35163, 70 38265, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4343] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 57359, 160 57360, 18 57361, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5350] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 59692, 104 59693, 52 59694, 137 310, 30 311, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4251] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 2865, 190 2866, 85 2867, 111 28529, 62 2868, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4908] | 0.24 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 31, 5 32, 47 33, 213 47, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4417] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 55892, 180 55893, 53 55894, 121 53, 109 224, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5195] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 17418, 1 17419, 116 17420, 48 116, 152 64, 185 65, 20 5305, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4760] | 0.54 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 1088, 94 1089, 159 1090, 53 13588, 131 13844, 22 1091, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5402] | 0.48 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 36327, 40 36328, 16 36329, 107 340, 163 341, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4691] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 42306, 86 42307, 82 42308, 111 82, 84 224, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5251] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 31871, 72 31872, 61 31873, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4344] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 64689, 160 64690, 142 64691, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4175] | 0.30 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 10358, 182 10359, 236 10360, 187 236, 157 215, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4843] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 46713, 234 46714, 128 46715, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5024] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 11567, 13 11568, 26 11569, 39 10010, 152 11570, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4548] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 61110, 188 61111, 84 61112, 66 17079, 190 61113, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5082] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 62865, 29 62866, 233 62867, 234 60004, 142 60260, 78 62868, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4909] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 37565, 5 37566, 145 37567, 6 145, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5141] | 0.49 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 29543, 25 29544, 225 29545, 173 44302, 49 44558, 42 29546, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5252] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 62884, 72 62885, 11 62886, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4629] | 0.27 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 24113, 70 24114, 211 24115, 112 211, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5351] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 41217, 104 41218, 45 41219, 15 492, 13 493, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4965] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 11426, 21 11427, 203 11428, 3 203, 232 143, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4418] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 1559, 180 1560, 111 1561, 152 111, 118 43, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4252] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 48758, 190 48759, 44 48760, 207 53028, 103 53284, 154 48761, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4844] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 30640, 234 30641, 212 30642, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4481] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 48066, 172 48067, 182 48068, 183 47030, 143 48069, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4176] | 0.55 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 9782, 182 9783, 51 9784, 225 51, 117 4, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4692] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 23452, 86 23453, 28 23454, 208 28, 210 123, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5025] | 0.51 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 5862, 13 5863, 32 5864, 144 36896, 11 5865, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4345] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 26335, 160 26336, 65 26337, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4761] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 1497, 94 1498, 106 1499, 36 9424, 219 1500, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5196] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 13906, 1 13907, 13 13908, 212 13, 223 209, 59 210, 216 55355, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4630] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 58139, 70 58140, 109 58141, 128 109, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4910] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 18262, 5 18263, 17 18264, 12 17, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4549] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 20514, 188 20515, 194 20516, 213 54551, 59 54807, 9 20517, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5083] | 0.32 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 15295, 29 15296, 80 15297, 229 58667, 37 58923, 22 15298, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5253] | 0.31 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 31171, 72 31172, 112 31173, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4346] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 31112, 160 31113, 218 31114, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4845] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 59320, 234 59321, 71 59322, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5352] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 57052, 104 57053, 149 57054, 206 408, 163 409, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5142] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 48681, 25 48682, 242 48683, 174 44792, 92 48684, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4966] | 0.27 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 41144, 21 41145, 216 41146, 32 216, 158 197, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4419] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 14962, 180 14963, 54 14964, 190 54, 134 208, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4253] | 0.41 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 47044, 190 47045, 84 47046, 85 21880, 179 47047, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4482] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 8529, 172 8530, 69 8531, 126 32325, 83 8532, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5084] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 25560, 29 25561, 128 25562, 21 5628, 176 25563, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4911] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 26458, 5 26459, 168 26460, 67 168, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5254] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 20028, 72 20029, 68 20030, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4693] | 0.49 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 11849, 86 11850, 149 11851, 175 149, 7 59, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4631] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 14120, 70 14121, 183 14122, 78 183, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5026] | 0.41 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 54676, 13 54677, 100 54678, 220 56420, 0 54679, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4762] | 0.67 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 52536, 94 52537, 176 52538, 184 47161, 203 47417, 181 52539, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4846] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 13092, 234 13093, 207 13094, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4177] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 27802, 182 27803, 151 27804, 217 151, 24 6, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4550] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 16587, 74 16588, 164 16589, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5197] | 0.60 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 26143, 1 26144, 9 26145, 118 9, 22 110, 44 111, 153 39212, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4967] | 0.55 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 37421, 21 37422, 8 37423, 180 8, 140 156, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4347] | 0.17 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 52211, 160 52212, 147 52213, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5143] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 59223, 25 59224, 158 59225, 78 20030, 242 20286, 108 59226, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5353] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 12235, 104 12236, 59 12237, 228 287, 110 288, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4420] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 26338, 180 26339, 67 26340, 43 67, 36 160, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4254] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 30916, 190 30917, 149 30918, 141 36252, 220 30919, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4551] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 63091, 74 63092, 22 63093, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4348] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 37266, 160 37267, 209 37268, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4483] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 10292, 172 10293, 111 10294, 251 64367, 34 10295, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4912] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 7567, 5 7568, 233 7569, 167 233, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5255] | 0.22 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 34836, 72 34837, 232 34838, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4847] | 0.29 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 58067, 234 58068, 219 58069, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4632] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 51335, 70 51336, 108 51337, 69 108, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5027] | 0.46 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 24953, 13 24954, 179 24955, 255 65459, 229 24956, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4178] | 0.47 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 23000, 182 23001, 92 23002, 57 92, 250 135, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4694] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 50987, 86 50988, 87 50989, 255 87, 239 247, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5085] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 9563, 29 9564, 110 9565, 120 30781, 238 31037, 35 9566, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4484] | 0.54 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 50317, 172 50318, 241 50319, 223 57329, 248 50320, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5144] | 0.57 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 13470, 25 13471, 57 13472, 53 13706, 51 13473, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5354] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 7529, 104 7530, 220 7531, 87 382, 240 383, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5256] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 51859, 72 51860, 32 51861, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4552] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 48236, 74 48237, 51 48238, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json-i4349] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a0.json 65246, 160 65247, 143 65248, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4968] | 0.46 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 33829, 21 33830, 19 33831, 117 19, 247 116, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5198] | 0.48 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 61110, 1 61111, 44 61112, 110 44, 100 48, 106 49, 141 36202, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4848] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 14713, 234 14714, 98 14715, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4763] | 0.47 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 31491, 94 31492, 119 31493, 107 27438, 213 27694, 106 31494, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4421] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 1401, 180 1402, 21 1403, 244 21, 152 216, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4255] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 45399, 190 45400, 240 45401, 54 13846, 91 14102, 193 45402, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4913] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 61599, 5 61600, 14 61601, 210 14, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4633] | 0.59 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 14301, 70 14302, 64 14303, 193 64, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4553] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 57284, 74 57285, 46 57286, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4350] | 0.33 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 31284, 164 31285, 192 31286, 69 192, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5028] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 11488, 13 11489, 13 11490, 192 49165, 201 11491, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4179] | 0.29 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 39283, 182 39284, 87 39285, 154 87, 177 65, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4695] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 46717, 86 46718, 99 46719, 146 99, 183 98, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5086] | 0.47 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 13269, 29 13270, 132 13271, 180 46153, 88 46409, 37 13272, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5257] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 7216, 72 7217, 168 7218, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json-i4849] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ea.json 62887, 234 62888, 113 62889, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4914] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 47073, 5 47074, 139 47075, 95 139, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5355] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 1462, 104 1463, 216 1464, 9 282, 151 283, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4485] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 51753, 172 51754, 139 51755, 102 26251, 229 51756, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4969] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 33252, 21 33253, 99 33254, 214 99, 226 250, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4256] | 0.57 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 12156, 190 12157, 210 12158, 28 7176, 28 7432, 238 12159, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4422] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 55090, 180 55091, 56 55092, 141 56, 185 85, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5199] | 0.62 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 41994, 1 41995, 91 41996, 249 91, 199 11, 233 12, 201 51689, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5145] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 20366, 25 20367, 1 20368, 168 43209, 95 20369, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4554] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 46515, 74 46516, 144 46517, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4764] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 6336, 94 6337, 159 6338, 213 54651, 254 54907, 42 6339, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4351] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 29234, 164 29235, 135 29236, 154 135, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4180] | 0.50 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 21297, 182 21298, 196 21299, 72 196, 29 58, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4850] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 50994, 9 50995, 10 50996, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5029] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 59846, 13 59847, 225 59848, 13 3553, 96 59849, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4634] | 0.26 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 7701, 70 7702, 30 7703, 81 30, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4696] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 21673, 86 21674, 66 21675, 94 66, 60 13, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5258] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 52966, 72 52967, 137 52968, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4915] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 34742, 5 34743, 49 34744, 229 49, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4555] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 46337, 74 46338, 67 46339, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5087] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 45722, 29 45723, 225 45724, 8 2217, 91 2473, 47 45725, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5356] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 62738, 104 62739, 163 62740, 62 446, 27 447, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4970] | 0.29 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 30420, 21 30421, 49 30422, 210 49, 121 193, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4486] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 41436, 172 41437, 172 41438, 21 5548, 179 41439, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4423] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 46960, 180 46961, 107 46962, 87 107, 157 163, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4851] | 0.25 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 43826, 9 43827, 39 43828, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4352] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 34032, 164 34033, 32 34034, 236 32, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5146] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 22485, 25 22486, 136 22487, 0 195, 165 22488, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5030] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 16123, 13 16124, 55 16125, 70 17975, 239 16126, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4765] | 0.60 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 45003, 94 45004, 194 45005, 30 7724, 159 7980, 74 45006, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4635] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 23530, 70 23531, 15 23532, 224 15, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5259] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 45848, 72 45849, 184 45850, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4181] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 60116, 182 60117, 124 60118, 31 124, 114 184, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4257] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 49349, 190 49350, 66 49351, 93 23822, 27 24078, 142 49352, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4916] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 20590, 5 20591, 49 20592, 196 49, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4556] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 56979, 74 56980, 113 56981, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5200] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 19390, 17 19391, 27 19392, 143 27, 206 28, 193 49423, 216 49679, 62 base: 27 lo: 206 hi: 193 deref_base: 49614 y_register: 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4697] | 0.41 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 27745, 86 27746, 162 27747, 211 162, 117 13, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4852] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 32274, 9 32275, 155 32276, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5088] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 25762, 29 25763, 86 25764, 150 38443, 185 38699, 186 25765, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5357] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 4860, 104 4861, 182 4862, 26 294, 243 295, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4971] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 3198, 21 3199, 52 3200, 157 52, 37 144, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4424] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 33768, 180 33769, 77 33770, 136 77, 161 165, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4636] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 40319, 70 40320, 216 40321, 83 216, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4353] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 41554, 164 41555, 110 41556, 62 110, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4487] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 7986, 172 7987, 194 7988, 108 27842, 174 7989, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5147] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 36539, 25 36540, 104 36541, 129 33242, 189 36542, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4557] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 58707, 74 58708, 245 58709, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5260] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 18701, 72 18702, 158 18703, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5409] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 48322, 40 48323, 22 48324, 227 447, 248 448, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5031] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 65068, 13 65069, 140 65070, 19 5004, 55 65071, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4182] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 453, 182 454, 103 455, 137 103, 195 228, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4917] | 0.24 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 56168, 5 56169, 78 56170, 179 78, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4853] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 4417, 9 4418, 166 4419, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4766] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 30358, 94 30359, 51 30360, 51 13073, 146 13329, 91 30361, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4698] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 48908, 86 48909, 55 48910, 82 55, 205 156, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5358] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 1017, 104 1018, 185 1019, 140 275, 241 276, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4258] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 51261, 190 51262, 202 51263, 190 48718, 198 48974, 27 51264, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5201] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 45505, 17 45506, 90 45507, 44 90, 191 91, 225 57805, 162 base: 90 lo: 191 hi: 225 deref_base: 57791 y_register: 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5089] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 26911, 29 26912, 187 26913, 96 24706, 27 24962, 182 26914, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4637] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 29105, 70 29106, 126 29107, 119 126, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4425] | 0.46 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 55527, 180 55528, 184 55529, 152 184, 186 210, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4558] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 3367, 74 3368, 228 3369, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5261] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 24207, 72 24208, 80 24209, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4972] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 40407, 21 40408, 46 40409, 93 46, 217 203, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4354] | 0.30 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 52465, 164 52466, 102 52467, 20 102, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4488] | 0.27 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 48138, 172 48139, 243 48140, 146 37619, 138 48141, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4918] | 0.34 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 19922, 5 19923, 244 19924, 221 244, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4854] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 63684, 9 63685, 128 63686, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5148] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 14844, 25 14845, 97 14846, 198 50712, 240 50968, 17 14847, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5032] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 18768, 13 18769, 142 18770, 72 18574, 230 18771, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4183] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 12186, 182 12187, 170 12188, 223 170, 109 16, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4559] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 48561, 74 48562, 159 48563, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5262] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 53959, 72 53960, 218 53961, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5090] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 22602, 29 22603, 85 22604, 169 43342, 169 43598, 147 22605, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4855] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 48827, 9 48828, 126 48829, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5359] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 24759, 104 24760, 249 24761, 166 450, 50 451, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4767] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 6506, 94 6507, 38 6508, 14 3639, 113 6509, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5202] | 0.62 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 23193, 17 23194, 230 23195, 148 230, 37 231, 22 5876, 195 base: 230 lo: 37 hi: 22 deref_base: 5669 y_register: 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4259] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 52441, 190 52442, 148 52443, 1 386, 123 642, 67 52444, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4638] | 0.52 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 52937, 70 52938, 121 52939, 163 121, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4489] | 0.53 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 38760, 172 38761, 32 38762, 209 53536, 253 38763, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4355] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 11533, 164 11534, 94 11535, 155 94, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4919] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 44616, 5 44617, 162 44618, 186 162, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4973] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 17408, 21 17409, 169 17410, 158 169, 97 19, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4699] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 49070, 86 49071, 42 49072, 88 42, 185 101, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4426] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 16959, 180 16960, 175 16961, 117 175, 106 169, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5033] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 40059, 13 40060, 191 40061, 63 16319, 71 40062, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5149] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 12181, 25 12182, 98 12183, 44 11496, 242 12184, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4560] | 0.20 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 55827, 74 55828, 56 55829, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4856] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 9954, 9 9955, 203 9956, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5263] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 1920, 72 1921, 59 1922, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4184] | 0.27 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 18279, 182 18280, 183 18281, 206 183, 39 250, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json-i4356] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a4.json 17591, 164 17592, 245 17593, 207 245, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5360] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 35209, 104 35210, 239 35211, 131 487, 70 488, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4768] | 0.61 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 20758, 94 20759, 239 20760, 66 17030, 171 17286, 62 20761, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4260] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 35782, 190 35783, 85 35784, 246 63029, 192 63285, 236 35785, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4561] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 32004, 74 32005, 225 32006, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4920] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 18335, 5 18336, 218 18337, 40 218, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5091] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 31010, 29 31011, 39 31012, 84 21741, 67 31013, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4857] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 41898, 9 41899, 34 41900, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4639] | 0.29 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 57301, 70 57302, 3 57303, 92 3, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4974] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 46960, 21 46961, 112 46962, 159 112, 207 61, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4490] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 65153, 172 65154, 195 65155, 188 48323, 138 65156, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4700] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 39007, 78 39008, 243 39009, 194 49907, 31 39010, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4427] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 33071, 180 33072, 44 33073, 12 44, 207 229, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5203] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 1609, 17 1610, 137 1611, 208 137, 26 138, 123 31669, 224 base: 137 lo: 26 hi: 123 deref_base: 31514 y_register: 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5150] | 0.59 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 44283, 1 44284, 179 44285, 135 179, 33 41, 154 42, 130 33434, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4185] | 0.53 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 55907, 182 55908, 63 55909, 232 63, 157 41, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5264] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 9540, 72 9541, 255 9542, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5034] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 7010, 13 7011, 53 7012, 70 17973, 150 7013, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5361] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 35280, 104 35281, 170 35282, 214 505, 195 506, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4562] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 7851, 74 7852, 250 7853, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4858] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 60625, 9 60626, 161 60627, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4921] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 14787, 5 14788, 104 14789, 130 104, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4640] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 10143, 70 10144, 80 10145, 0 80, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4261] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 23134, 190 23135, 145 23136, 230 58955, 217 59211, 165 23137, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5265] | 0.33 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 42285, 72 42286, 147 42287, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5092] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 54660, 29 54661, 106 54662, 76 19657, 98 54663, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4975] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 6572, 21 6573, 65 6574, 181 65, 238 89, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4428] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 37189, 180 37190, 89 37191, 87 89, 82 214, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4491] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 37615, 172 37616, 169 37617, 29 7593, 93 37618, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4701] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 46747, 78 46748, 119 46749, 2 631, 46 46750, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4563] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 45956, 74 45957, 14 45958, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5413] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 37231, 40 37232, 121 37233, 246 390, 86 391, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4769] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 48604, 94 48605, 76 48606, 172 44257, 84 48607, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4859] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 9935, 9 9936, 94 9937, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5204] | 0.62 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 62929, 17 62930, 52 62931, 124 52, 225 53, 162 41613, 206 41869, 183 base: 52 lo: 225 hi: 162 deref_base: 41697 y_register: 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4922] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 19042, 5 19043, 133 19044, 60 133, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5035] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 51244, 13 51245, 95 51246, 137 35167, 141 51247, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4186] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 58230, 182 58231, 48 58232, 38 48, 178 42, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4641] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 27656, 70 27657, 215 27658, 210 215, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5362] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 2172, 104 2173, 233 2174, 234 430, 19 431, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4976] | 0.51 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 22068, 21 22069, 76 22070, 145 76, 208 86, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5151] | 0.62 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 7486, 1 7487, 134 7488, 16 134, 34 152, 148 153, 221 56724, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5266] | 0.33 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 8709, 72 8710, 170 8711, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4492] | 0.52 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 6856, 172 6857, 157 6858, 84 21661, 201 6859, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4262] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 48598, 190 48599, 131 48600, 191 48939, 145 49195, 179 48601, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5093] | 0.49 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 56426, 29 56427, 218 56428, 35 9099, 199 9355, 204 56429, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4564] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 26352, 74 26353, 128 26354, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4702] | 0.55 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 3327, 78 3328, 191 3329, 148 38079, 170 3330, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4860] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 27663, 9 27664, 159 27665, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4429] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 25902, 180 25903, 146 25904, 149 146, 89 151, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4923] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 4330, 5 4331, 168 4332, 112 168, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4770] | 0.55 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 64607, 94 64608, 83 64609, 101 26088, 68 64610, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4642] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 19553, 70 19554, 191 19555, 42 191, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4187] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 30513, 182 30514, 106 30515, 122 106, 239 78, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5036] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 59231, 13 59232, 90 59233, 12 3162, 7 59234, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4565] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 61396, 74 61397, 111 61398, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4861] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 12372, 9 12373, 159 12374, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5267] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 572, 72 573, 58 574, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5363] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 51568, 104 51569, 149 51570, 234 408, 145 409, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4263] | 0.53 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 37087, 190 37088, 19 37089, 117 30114, 102 37090, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5205] | 0.40 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 18913, 17 18914, 202 18915, 233 202, 93 203, 147 37719, 205 37975, 47 base: 202 lo: 93 hi: 147 deref_base: 37725 y_register: 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4977] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 58536, 21 58537, 70 58538, 163 70, 86 40, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4924] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 40583, 5 40584, 182 40585, 228 182, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4493] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 49316, 172 49317, 184 49318, 8 2232, 189 49319, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4430] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 9091, 180 9092, 25 9093, 73 25, 141 227, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4188] | 0.52 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 34278, 182 34279, 164 34280, 203 164, 225 104, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5094] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 25722, 29 25723, 218 25724, 93 24025, 206 24281, 21 25725, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5037] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 15664, 13 15665, 25 15666, 94 24089, 117 15667, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5152] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 40827, 1 40828, 51 40829, 56 51, 61 215, 129 216, 129 33153, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4566] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 14212, 74 14213, 175 14214, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4703] | 0.49 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 51045, 78 51046, 159 51047, 7 1951, 4 51048, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4643] | 0.51 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 57135, 70 57136, 153 57137, 81 153, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4862] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 33257, 9 33258, 240 33259, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5268] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 31915, 72 31916, 124 31917, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4925] | 0.34 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 45103, 5 45104, 215 45105, 240 215, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4771] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 61847, 94 61848, 193 61849, 49 12658, 106 12914, 136 61850, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5364] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 25616, 104 25617, 80 25618, 86 435, 203 436, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5206] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 55490, 17 55491, 59 55492, 22 59, 181 60, 149 38378, 12 base: 59 lo: 181 hi: 149 deref_base: 38325 y_register: 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4567] | 0.33 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 29520, 74 29521, 58 29522, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4978] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 38534, 21 38535, 226 38536, 176 226, 51 114, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4264] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 64151, 190 64152, 228 64153, 234 60022, 192 60278, 101 64154, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4863] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 4619, 9 4620, 230 4621, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5269] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 55235, 72 55236, 235 55237, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4494] | 0.46 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 46790, 172 46791, 123 46792, 11 2939, 133 46793, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5095] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 7353, 29 7354, 190 7355, 22 5778, 170 6034, 240 7356, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4431] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 42748, 180 42749, 139 42750, 129 139, 244 79, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5153] | 0.51 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 14428, 1 14429, 201 14430, 223 201, 221 131, 4 132, 242 61956, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5038] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 64887, 13 64888, 91 64889, 89 22875, 83 64890, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4189] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 2137, 182 2138, 86 2139, 244 86, 163 206, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4926] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 27203, 5 27204, 184 27205, 68 184, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4979] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 5535, 21 5536, 107 5537, 45 107, 173 91, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4704] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 20796, 78 20797, 195 20798, 11 3011, 82 20799, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4644] | 0.27 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 60782, 70 60783, 220 60784, 139 220, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5365] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 9532, 104 9533, 238 9534, 168 473, 188 474, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4568] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 33802, 74 33803, 110 33804, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4772] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 47832, 94 47833, 197 47834, 216 55457, 70 55713, 245 47835, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5207] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 63182, 17 63183, 216 63184, 198 216, 163 217, 132 34042, 240 base: 216 lo: 163 hi: 132 deref_base: 33955 y_register: 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json-i4864] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/09.json 11276, 9 11277, 205 11278, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4265] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 57266, 190 57267, 51 57268, 61 15715, 153 57269, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5096] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 19265, 29 19266, 225 19267, 129 33244, 12 33500, 38 19268, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5270] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 38219, 72 38220, 66 38221, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4432] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 55701, 180 55702, 248 55703, 50 248, 173 194, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4495] | 0.23 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 33089, 172 33090, 203 33091, 227 58315, 248 33092, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4927] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 52604, 5 52605, 4 52606, 182 4, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4569] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 44243, 74 44244, 246 44245, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5039] | 0.45 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 29977, 13 29978, 116 29979, 48 12404, 38 29980, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4645] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 22599, 70 22600, 197 22601, 23 197, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5154] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 22085, 1 22086, 248 22087, 193 248, 125 0, 239 1, 178 45807, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4190] | 0.28 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 55357, 182 55358, 21 55359, 77 21, 149 133, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4705] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 55393, 78 55394, 37 55395, 168 43045, 222 55396, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5366] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 51189, 104 51190, 153 51191, 136 470, 129 471, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4980] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 44601, 21 44602, 202 44603, 52 202, 72 64, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4496] | 0.54 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 13318, 172 13319, 114 13320, 112 28786, 38 13321, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4773] | 0.58 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 58666, 94 58667, 100 58668, 201 51553, 209 51809, 38 58669, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5271] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 57166, 72 57167, 53 57168, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4266] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 16932, 190 16933, 193 16934, 245 62724, 6 62980, 17 16935, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4570] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 25029, 74 25030, 148 25031, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4191] | 0.55 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 27310, 182 27311, 109 27312, 90 109, 58 22, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5208] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 62474, 17 62475, 73 62476, 96 73, 111 74, 184 47219, 190 base: 73 lo: 111 hi: 184 deref_base: 47215 y_register: 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4928] | 0.36 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 43877, 5 43878, 118 43879, 166 118, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4433] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 42490, 180 42491, 38 42492, 68 38, 60 98, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4646] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 62750, 70 62751, 40 62752, 197 40, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5097] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 64647, 29 64648, 186 64649, 9 2491, 166 64650, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5040] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 10992, 13 10993, 210 10994, 45 11730, 54 10995, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5272] | 0.29 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 17080, 72 17081, 22 17082, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4571] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 16500, 74 16501, 219 16502, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4981] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 6221, 21 6222, 213 6223, 112 213, 229 162, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4706] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 1798, 78 1799, 64 1800, 56 14400, 55 1801, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5155] | 0.60 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 22281, 1 22282, 53 22283, 164 53, 10 54, 158 40458, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5367] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 5986, 104 5987, 11 5988, 159 461, 134 462, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4929] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 58965, 5 58966, 49 58967, 99 49, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4497] | 0.45 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 3609, 172 3610, 223 3611, 77 19935, 243 3612, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4267] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 33780, 190 33781, 100 33782, 199 51030, 166 51286, 124 33783, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4647] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 20835, 70 20836, 225 20837, 125 225, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5273] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 43492, 72 43493, 249 43494, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4774] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 19131, 94 19132, 210 19133, 178 45708, 211 45964, 252 19134, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5209] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 37523, 17 37524, 78 37525, 162 78, 83 79, 37 9634, 231 base: 78 lo: 83 hi: 37 deref_base: 9555 y_register: 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json-i4434] | 0.43 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b4.json 61058, 180 61059, 234 61060, 109 234, 74 164, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5098] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 36837, 29 36838, 0 36839, 81 20799, 124 36840, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5041] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 62143, 13 62144, 220 62145, 54 14044, 139 62146, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4572] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 18842, 74 18843, 207 18844, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4192] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 59991, 182 59992, 37 59993, 122 37, 138 218, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5368] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 25757, 104 25758, 61 25759, 161 443, 155 444, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4707] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 52332, 78 52333, 18 52334, 115 29458, 10 52335, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4982] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 23438, 21 23439, 148 23440, 54 148, 147 170, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4573] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 60999, 74 61000, 73 61001, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json-i4930] | 0.22 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/05.json 9624, 5 9625, 46 9626, 172 46, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5042] | 0.58 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 26815, 13 26816, 142 26817, 69 17806, 17 26818, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4268] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 42207, 190 42208, 93 42209, 127 32744, 14 42210, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5274] | 0.22 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 65325, 72 65326, 94 65327, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4648] | 0.50 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 49028, 70 49029, 131 49030, 71 131, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4193] | 0.50 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 39900, 182 39901, 181 39902, 136 181, 194 98, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4498] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 945, 172 946, 86 947, 234 59990, 23 948, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5156] | 0.48 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 26867, 1 26868, 244 26869, 180 244, 200 162, 58 163, 214 54842, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5099] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 21058, 29 21059, 137 21060, 10 2774, 244 21061, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5553] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 27063, 54 27064, 101 27065, 24 101, 148 15, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4775] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 51491, 94 51492, 8 51493, 252 64574, 217 51494, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4983] | 0.54 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 23729, 21 23730, 169 23731, 112 169, 126 232, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5210] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 31777, 17 31778, 254 31779, 166 254, 133 255, 140 36078, 120 base: 254 lo: 133 hi: 140 deref_base: 35973 y_register: 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5275] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 22822, 72 22823, 149 22824, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5369] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 3067, 104 3068, 49 3069, 42 264, 238 265, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4708] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 45257, 78 45258, 148 45259, 27 7060, 53 45260, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4574] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 35721, 74 35722, 58 35723, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4269] | 0.56 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 46415, 190 46416, 248 46417, 139 35690, 87 35946, 33 46418, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5100] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 57229, 25 57230, 48 57231, 15 3876, 216 4132, 136 57232, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json-i4499] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ac.json 30408, 172 30409, 155 30410, 243 62363, 196 30411, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json-i4649] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/46.json 9264, 70 9265, 157 9266, 139 157, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json-i4194] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/b6.json 8393, 182 8394, 127 8395, 106 127, 110 181, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5157] | 0.55 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 34520, 1 34521, 43 34522, 4 43, 79 79, 26 80, 19 4890, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4575] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 48878, 74 48879, 185 48880, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5043] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 60235, 13 60236, 192 60237, 148 38080, 180 60238, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4776] | 0.57 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 42978, 94 42979, 69 42980, 120 30931, 97 42981, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5276] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 18044, 72 18045, 187 18046, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5211] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 15759, 17 15760, 105 15761, 121 105, 161 106, 84 21668, 86 base: 105 lo: 161 hi: 84 deref_base: 21665 y_register: 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5370] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 32845, 104 32846, 103 32847, 210 264, 154 265, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4984] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 49679, 21 49680, 18 49681, 187 18, 184 24, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4650] | 0.54 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 23157, 86 23158, 138 23159, 199 138, 229 96, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4709] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 34557, 78 34558, 241 34559, 71 18417, 44 34560, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5101] | 0.56 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 43744, 25 43745, 220 43746, 116 29895, 124 30151, 34 43747, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4500] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 57096, 188 57097, 72 57098, 216 55338, 227 55594, 1 57099, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4576] | 0.19 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 57393, 74 57394, 218 57395, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5277] | 0.22 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 55476, 72 55477, 212 55478, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4270] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 55023, 190 55024, 160 55025, 187 47895, 89 48151, 130 55026, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5044] | 0.28 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 8359, 13 8360, 13 8361, 0 13, 43 8362, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5371] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 35216, 104 35217, 118 35218, 83 286, 1 287, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5158] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 54598, 1 54599, 81 54600, 7 81, 186 166, 109 167, 244 62573, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4577] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 60128, 74 60129, 232 60130, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4985] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 63309, 21 63310, 38 63311, 246 38, 164 229, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4777] | 0.50 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 36731, 94 36732, 37 36733, 179 45830, 126 46086, 157 36734, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5278] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 35059, 72 35060, 244 35061, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5212] | 0.48 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 38874, 17 38875, 172 38876, 123 172, 58 173, 151 38826, 186 base: 172 lo: 58 hi: 151 deref_base: 38714 y_register: 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4710] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 30424, 78 30425, 162 30426, 157 40354, 135 30427, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5423] | 0.29 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 49190, 40 49191, 145 49192, 14 294, 168 295, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5045] | 0.55 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 36623, 13 36624, 131 36625, 223 57219, 39 36626, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4651] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 2602, 86 2603, 232 2604, 115 232, 197 125, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4501] | 0.41 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 53240, 188 53241, 242 53242, 168 43191, 132 43447, 51 53243, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4271] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 36750, 190 36751, 82 36752, 80 20580, 50 36753, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5102] | 0.51 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 64374, 25 64375, 23 64376, 154 39550, 2 64377, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4578] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 4067, 74 4068, 151 4069, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5372] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 11690, 104 11691, 117 11692, 143 372, 50 373, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5279] | 0.32 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 1929, 72 1930, 22 1931, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5159] | 0.59 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 30376, 1 30377, 69 30378, 85 69, 26 71, 105 72, 20 5225, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4986] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 42917, 21 42918, 135 42919, 71 135, 188 145, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5424] | 0.50 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 20540, 40 20541, 99 20542, 122 373, 33 374, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4778] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 51920, 94 51921, 25 51922, 174 44789, 130 51923, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4711] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 16099, 78 16100, 150 16101, 126 32406, 194 16102, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5213] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 20111, 17 20112, 94 20113, 2 94, 78 95, 76 19653, 234 base: 94 lo: 78 hi: 76 deref_base: 19534 y_register: 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4579] | 0.31 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 2478, 74 2479, 56 2480, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4652] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 48000, 86 48001, 175 48002, 176 175, 203 253, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4502] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 64720, 188 64721, 251 64722, 189 48406, 245 48662, 0 64723, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5046] | 0.46 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 40275, 13 40276, 237 40277, 79 20461, 132 40278, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4272] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 42060, 190 42061, 81 42062, 243 62387, 17 42063, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5280] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 45646, 72 45647, 57 45648, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5373] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 11191, 104 11192, 113 11193, 13 433, 47 434, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5103] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 30876, 25 30877, 171 30878, 90 23171, 65 23427, 114 30879, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4987] | 0.31 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 14879, 21 14880, 245 14881, 226 245, 179 213, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4712] | 0.51 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 23182, 78 23183, 85 23184, 120 30805, 139 23185, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5650] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 51260, 62 51261, 225 51262, 221 56608, 232 56864, 136 51263, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4580] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 18175, 74 18176, 220 18177, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4779] | 0.60 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 34360, 94 34361, 229 34362, 216 55311, 120 55567, 200 34363, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5214] | 0.62 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 38517, 17 38518, 7 38519, 124 7, 215 8, 214 54800, 175 55056, 249 base: 7 lo: 215 hi: 214 deref_base: 54999 y_register: 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5160] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 747, 1 748, 141 749, 187 141, 230 16, 216 17, 95 24536, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4653] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 1530, 86 1531, 255 1532, 230 255, 173 136, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4503] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 46491, 188 46492, 193 46493, 165 42287, 53 42543, 254 46494, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4581] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 11495, 74 11496, 134 11497, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4273] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 59375, 190 59376, 112 59377, 238 61083, 170 59378, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5281] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 61493, 72 61494, 249 61495, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5047] | 0.23 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 21813, 13 21814, 249 21815, 236 60665, 224 21816, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4988] | 0.55 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 49221, 21 49222, 146 49223, 133 146, 192 206, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5374] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 61503, 104 61504, 164 61505, 154 448, 219 449, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5104] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 34361, 25 34362, 15 34363, 152 38934, 100 34364, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5048] | 0.52 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 54758, 13 54759, 69 54760, 90 23109, 174 54761, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5282] | 0.33 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 38041, 72 38042, 30 38043, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5161] | 0.54 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 34840, 1 34841, 104 34842, 152 104, 1 24, 168 25, 141 36264, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4713] | 0.49 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 10057, 78 10058, 235 10059, 182 46827, 215 10060, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4654] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 2937, 86 2938, 248 2939, 244 248, 167 114, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4582] | 0.21 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 33219, 74 33220, 111 33221, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4274] | 0.47 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 4581, 190 4582, 198 4583, 21 5380, 22 5636, 39 4584, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4504] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 7827, 188 7828, 125 7829, 75 19247, 143 19503, 2 7830, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4780] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 50184, 94 50185, 29 50186, 116 29868, 210 50187, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5375] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 29621, 104 29622, 59 29623, 143 428, 248 429, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5215] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 15728, 17 15729, 21 15730, 181 21, 224 22, 201 51691, 10 base: 21 lo: 224 hi: 201 deref_base: 51680 y_register: 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5105] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 1981, 25 1982, 202 1983, 103 26568, 216 26824, 224 1984, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4583] | 0.35 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 43345, 74 43346, 93 43347, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4989] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 15565, 21 15566, 193 15567, 102 193, 245 47, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5283] | 0.40 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 57886, 72 57887, 201 57888, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4655] | 0.53 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 46842, 86 46843, 78 46844, 119 78, 43 186, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4714] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 49037, 78 49038, 14 49039, 239 61198, 28 49040, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json-i5049] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/0d.json 35058, 13 35059, 238 35060, 142 36590, 208 35061, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5162] | 0.61 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 14113, 1 14114, 98 14115, 232 98, 142 50, 144 51, 113 29072, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4505] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 49632, 188 49633, 235 49634, 181 46385, 178 46641, 107 49635, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5376] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 61266, 104 61267, 174 61268, 184 258, 186 259, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4275] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 49210, 190 49211, 167 49212, 237 60814, 35 61070, 229 49213, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4781] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 26352, 94 26353, 192 26354, 131 33695, 67 33951, 219 26355, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5106] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 56519, 25 56520, 52 56521, 86 22067, 24 22323, 126 56522, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5216] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 47737, 17 47738, 93 47739, 75 93, 224 94, 248 63590, 203 63846, 188 base: 93 lo: 224 hi: 248 deref_base: 63712 y_register: 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json-i4584] | 0.22 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4a.json 7963, 74 7964, 54 7965, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4990] | 0.33 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 63197, 21 63198, 175 63199, 5 175, 100 66, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5284] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 27658, 72 27659, 13 27660, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5050] | 0.56 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 34101, 29 34102, 122 34103, 37 9510, 142 9766, 96 34104, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4656] | 0.49 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 61430, 86 61431, 168 61432, 0 168, 37 193, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4715] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 9337, 78 9338, 253 9339, 30 7933, 190 9340, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json-i4276] | 0.60 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/be.json 46806, 190 46807, 165 46808, 82 21092, 255 21348, 32 46809, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5377] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 22074, 104 22075, 67 22076, 66 508, 101 509, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4506] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 14378, 188 14379, 205 14380, 5 1289, 190 1545, 190 14381, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5285] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 21297, 72 21298, 43 21299, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5107] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 25273, 25 25274, 148 25275, 109 28010, 158 28266, 179 25276, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4782] | 0.51 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 8971, 94 8972, 35 8973, 218 56005, 36 8974, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4991] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 37671, 21 37672, 57 37673, 177 57, 233 67, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5217] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 47905, 17 47906, 197 47907, 73 197, 43 198, 137 35284, 205 base: 197 lo: 43 hi: 137 deref_base: 35115 y_register: 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5163] | 0.48 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 8760, 1 8761, 89 8762, 113 89, 0 0, 183 1, 125 32183, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5429] | 0.32 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 23827, 40 23828, 152 23829, 204 407, 152 408, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5378] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 30872, 104 30873, 33 30874, 213 501, 48 502, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5051] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 43801, 29 43802, 152 43803, 73 18708, 244 18964, 137 43804, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5286] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 56259, 72 56260, 79 56261, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5609] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 45867, 46 45868, 170 45869, 254 65194, 237 45870, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4507] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 25823, 188 25824, 117 25825, 163 41936, 52 25826, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4716] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 45410, 78 45411, 139 45412, 111 28555, 93 45413, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5108] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 46143, 25 46144, 114 46145, 250 64172, 157 46146, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json-i4657] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/56.json 23429, 86 23430, 5 23431, 118 5, 205 163, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4992] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 40860, 21 40861, 148 40862, 147 148, 180 153, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5430] | 0.47 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 2435, 40 2436, 226 2437, 60 356, 86 357, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4783] | 0.52 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 62326, 94 62327, 161 62328, 114 29392, 10 62329, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5164] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 30458, 1 30459, 86 30460, 120 86, 66 103, 102 104, 20 5222, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5218] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 1979, 17 1980, 68 1981, 176 68, 19 69, 244 62565, 91 base: 68 lo: 19 hi: 244 deref_base: 62483 y_register: 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5052] | 0.46 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 47565, 29 47566, 147 47567, 188 48298, 161 47568, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5287] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 27481, 72 27482, 142 27483, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5379] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 45496, 104 45497, 13 45498, 113 283, 63 284, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5109] | 0.53 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 22624, 25 22625, 211 22626, 244 62586, 226 62842, 87 22627, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4717] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 37978, 78 37979, 62 37980, 133 34110, 120 37981, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4508] | 0.55 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 1562, 188 1563, 93 1564, 45 11532, 145 11788, 164 1565, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4993] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 5051, 21 5052, 25 5053, 53 25, 252 31, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5431] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 27211, 40 27212, 37 27213, 216 484, 31 485, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5165] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 38046, 1 38047, 179 38048, 166 179, 168 167, 247 168, 252 64759, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4784] | 0.58 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 9904, 94 9905, 141 9906, 65 16720, 95 16976, 47 9907, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5288] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 960, 72 961, 31 962, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5219] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 31577, 17 31578, 168 31579, 234 168, 143 169, 56 14548, 217 base: 168 lo: 143 hi: 56 deref_base: 14479 y_register: 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5380] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 1961, 104 1962, 14 1963, 220 451, 120 452, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5053] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 43571, 29 43572, 90 43573, 6 1741, 124 43574, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4718] | 0.55 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 23505, 78 23506, 222 23507, 24 6366, 113 23508, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5432] | 0.50 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 32447, 40 32448, 208 32449, 131 287, 216 288, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5110] | 0.40 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 39088, 25 39089, 18 39090, 67 17210, 39 39091, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5289] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 47985, 72 47986, 28 47987, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4509] | 0.42 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 53454, 188 53455, 157 53456, 156 40011, 16 40267, 130 53457, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json-i4994] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/15.json 22547, 21 22548, 98 22549, 208 98, 77 140, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5054] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 48966, 29 48967, 204 48968, 254 65242, 138 48969, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5381] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 25665, 104 25666, 82 25667, 186 312, 84 313, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5166] | 0.60 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 45747, 1 45748, 83 45749, 174 83, 212 58, 86 59, 50 12886, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4785] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 45932, 94 45933, 84 45934, 208 53457, 223 45935, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json-i5290] | 0.42 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/48.json 14225, 72 14226, 169 14227, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5220] | 0.48 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 50136, 17 50137, 248 50138, 168 248, 65 249, 67 17373, 108 base: 248 lo: 65 hi: 67 deref_base: 17217 y_register: 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5564] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 27353, 54 27354, 164 27355, 29 164, 16 234, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5111] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 53424, 25 53425, 78 53426, 104 26706, 143 53427, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4719] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 59442, 78 59443, 156 59444, 117 30108, 255 59445, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json-i4510] | 0.46 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/bc.json 12571, 188 12572, 214 12573, 90 23282, 224 12574, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5055] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 19083, 29 19084, 155 19085, 213 54538, 53 54794, 10 19086, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5382] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 18364, 104 18365, 92 18366, 29 476, 85 477, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5112] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 21487, 25 21488, 244 21489, 41 10702, 1 10958, 145 21490, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4786] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 53151, 94 53152, 81 53153, 120 30895, 168 53154, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5221] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 10188, 17 10189, 42 10190, 19 42, 77 43, 114 29427, 44 base: 42 lo: 77 hi: 114 deref_base: 29261 y_register: 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5167] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 46844, 1 46845, 144 46846, 199 144, 12 114, 167 115, 210 53927, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5434] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 23514, 40 23515, 140 23516, 69 274, 153 275, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4720] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 24739, 78 24740, 189 24741, 63 16317, 40 24742, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5521] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 50551, 38 50552, 1 50553, 133 1, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json-i5056] | 0.55 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/1d.json 18341, 29 18342, 48 18343, 97 24832, 18 25088, 214 18344, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5383] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 61936, 104 61937, 240 61938, 14 400, 161 401, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5113] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 47484, 25 47485, 149 47486, 209 53759, 163 47487, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4787] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 22482, 94 22483, 215 22484, 216 55327, 40 55583, 241 22485, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5222] | 0.54 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 40175, 17 40176, 209 40177, 201 209, 145 210, 81 20796, 123 21052, 199 base: 209 lo: 145 hi: 81 deref_base: 20881 y_register: 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4721] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 49180, 78 49181, 205 49182, 143 36813, 214 49183, 248 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5168] | 0.55 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 47809, 1 47810, 79 47811, 66 79, 117 39, 239 40, 121 31215, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5384] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 52526, 104 52527, 52 52528, 190 282, 158 283, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5114] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 50423, 25 50424, 211 50425, 157 40310, 177 40566, 121 50426, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4788] | 0.57 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 19026, 94 19027, 31 19028, 241 61947, 250 19029, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4722] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 30556, 78 30557, 96 30558, 212 54368, 79 30559, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5615] | 0.57 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 45498, 46 45499, 80 45500, 136 34896, 7 45501, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5567] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 22795, 54 22796, 28 22797, 86 28, 200 163, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5523] | 0.26 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 50488, 38 50489, 207 50490, 120 207, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5223] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 27083, 17 27084, 69 27085, 29 69, 60 70, 20 5140, 21 5396, 147 base: 69 lo: 60 hi: 20 deref_base: 5180 y_register: 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5169] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 30612, 1 30613, 62 30614, 41 62, 112 102, 42 103, 147 37674, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5385] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 57022, 104 57023, 152 57024, 165 324, 95 325, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5437] | 0.53 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 21543, 40 21544, 80 21545, 175 439, 193 440, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5115] | 0.52 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 18112, 25 18113, 68 18114, 24 6336, 82 18115, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4723] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 11266, 78 11267, 170 11268, 109 28074, 191 11269, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5660] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 48118, 62 48119, 55 48120, 177 45465, 184 48121, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4789] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 9420, 94 9421, 10 9422, 68 17463, 93 9423, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5386] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 52597, 104 52598, 41 52599, 137 436, 172 437, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5224] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 53207, 17 53208, 221 53209, 115 221, 43 222, 192 49172, 37 49428, 20 base: 221 lo: 43 hi: 192 deref_base: 49195 y_register: 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5170] | 0.55 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 60112, 1 60113, 124 60114, 172 124, 1 28, 114 29, 49 12658, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5116] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 6673, 25 6674, 236 6675, 207 53168, 49 53424, 74 6676, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4724] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 13261, 78 13262, 113 13263, 203 52081, 247 13264, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4790] | 0.68 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 57448, 94 57449, 123 57450, 22 5690, 52 5946, 255 57451, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5387] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 34091, 104 34092, 172 34093, 168 451, 198 452, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5225] | 0.70 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 59757, 17 59758, 71 59759, 128 71, 100 72, 62 16093, 225 base: 71 lo: 100 hi: 62 deref_base: 15972 y_register: 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5171] | 0.56 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 65316, 1 65317, 158 65318, 115 158, 140 142, 42 143, 66 16938, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json-i5117] | 0.41 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/19.json 42004, 25 42005, 195 42006, 134 34434, 229 34690, 89 42007, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5388] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 28794, 104 28795, 48 28796, 26 459, 81 460, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4725] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 24543, 78 24544, 138 24545, 106 27274, 57 24546, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5440] | 0.50 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 31521, 40 31522, 250 31523, 250 487, 167 488, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4791] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 61400, 94 61401, 157 61402, 149 38375, 119 61403, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5172] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 56348, 1 56349, 175 56350, 226 175, 220 91, 93 92, 200 51293, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5226] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 29130, 17 29131, 126 29132, 7 126, 255 127, 75 19375, 46 19631, 147 base: 126 lo: 255 hi: 75 deref_base: 19455 y_register: 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6026] | 0.66 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 27109, 96 27110, 209 27111, 69 507, 13 508, 125 509, 179 45949, 14 45950, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5389] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 4117, 104 4118, 175 4119, 252 335, 165 336, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4726] | 0.42 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 24197, 78 24198, 97 24199, 244 62561, 173 24200, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5441] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 44618, 40 44619, 61 44620, 93 485, 31 486, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4792] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 24391, 94 24392, 21 24393, 39 10076, 65 24394, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5227] | 0.62 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 37817, 17 37818, 94 37819, 93 94, 120 95, 23 6021, 56 base: 94 lo: 120 hi: 23 deref_base: 6008 y_register: 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5173] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 59930, 1 59931, 110 59932, 117 110, 219 46, 36 47, 83 21284, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5390] | 0.46 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 25903, 104 25904, 206 25905, 23 349, 176 350, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5620] | 0.56 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 51664, 46 51665, 25 51666, 243 62233, 55 51667, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4727] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 27419, 78 27420, 107 27421, 133 34155, 200 27422, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5572] | 0.47 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 41587, 54 41588, 114 41589, 133 114, 11 146, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6027] | 0.53 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 1467, 96 1468, 140 1469, 26 434, 215 435, 224 436, 232 59616, 184 59617, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4793] | 0.63 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 55922, 94 55923, 15 55924, 85 21866, 72 55925, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5664] | 0.57 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 52825, 62 52826, 118 52827, 148 38080, 72 52828, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5174] | 0.55 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 44084, 1 44085, 239 44086, 75 239, 204 224, 151 225, 207 53143, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5530] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 18974, 38 18975, 41 18976, 239 41, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5391] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 41119, 104 41120, 31 41121, 70 386, 154 387, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json-i4728] | 0.51 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/4e.json 43323, 78 43324, 85 43325, 172 44117, 166 43326, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5228] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 33122, 17 33123, 253 33124, 21 253, 106 254, 168 43248, 207 base: 253 lo: 106 hi: 168 deref_base: 43114 y_register: 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6028] | 0.68 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 54000, 96 54001, 255 54002, 253 303, 74 304, 9 305, 130 33289, 13 33290, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5665] | 0.47 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 60069, 62 60070, 150 60071, 202 51744, 86 52000, 21 60072, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4794] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 56304, 94 56305, 148 56306, 153 39235, 100 39491, 212 56307, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5392] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 23340, 104 23341, 109 23342, 213 343, 198 344, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5229] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 15254, 17 15255, 236 15256, 250 236, 211 237, 242 62148, 138 62404, 238 base: 236 lo: 211 hi: 242 deref_base: 62163 y_register: 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5175] | 0.57 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 65117, 1 65118, 147 65119, 44 147, 186 99, 97 100, 210 53857, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6063] | 0.20 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 63335, 233 63336, 240 63337, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json-i5574] | 0.55 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/36.json 48194, 54 48195, 60 48196, 141 60, 248 61, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5532] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 47477, 38 47478, 195 47479, 91 195, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6064] | 0.35 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 61608, 233 61609, 151 61610, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4795] | 0.58 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 17515, 94 17516, 183 17517, 204 52250, 217 52506, 103 17518, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5393] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 44012, 104 44013, 200 44014, 248 357, 50 358, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5230] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 54025, 17 54026, 121 54027, 52 121, 188 122, 34 8951, 200 base: 121 lo: 188 hi: 34 deref_base: 8892 y_register: 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6029] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 65283, 96 65284, 159 65285, 231 283, 142 284, 165 285, 97 24997, 69 24998, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6065] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 29503, 233 29504, 40 29505, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json-i5176] | 0.50 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/01.json 4412, 1 4413, 118 4414, 138 118, 241 60, 170 61, 119 30634, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5667] | 0.59 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 458, 62 459, 235 460, 150 38536, 55 38792, 123 461, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5394] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 56743, 104 56744, 170 56745, 133 277, 151 278, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6066] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 25061, 233 25062, 230 25063, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json-i5446] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/28.json 36698, 40 36699, 90 36700, 160 257, 172 258, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4796] | 0.47 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 39403, 94 39404, 69 39405, 121 31078, 242 39406, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6030] | 0.56 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 19042, 96 19043, 165 19044, 143 269, 184 270, 23 271, 226 57879, 23 57880, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5231] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 8283, 17 8284, 123 8285, 79 123, 81 124, 249 63886, 13 base: 123 lo: 81 hi: 249 deref_base: 63825 y_register: 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6099] | 0.23 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 8823, 233 8824, 241 8825, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6067] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 46693, 233 46694, 153 46695, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5395] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 45893, 104 45894, 1 45895, 67 256, 28 257, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6100] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 46190, 229 46191, 185 46192, 248 185, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json-i4797] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/5e.json 6629, 94 6630, 145 6631, 233 59833, 188 6632, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6068] | 0.19 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 54110, 233 54111, 183 54112, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5232] | 0.55 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 15603, 17 15604, 60 15605, 75 60, 214 61, 225 57818, 5 base: 60 lo: 214 hi: 225 deref_base: 57814 y_register: 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6031] | 0.57 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 22284, 96 22285, 62 22286, 87 298, 134 299, 132 300, 80 20612, 36 20613, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6069] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 53112, 233 53113, 251 53114, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5396] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 34935, 104 34936, 37 34937, 199 352, 85 353, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6101] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 29848, 229 29849, 90 29850, 221 90, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5536] | 0.52 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 60180, 38 60181, 159 60182, 3 159, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6134] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 16882, 229 16883, 160 16884, 9 160, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6070] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 7100, 233 7101, 132 7102, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5233] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 48574, 17 48575, 11 48576, 62 11, 38 12, 182 46643, 58 base: 11 lo: 38 hi: 182 deref_base: 46630 y_register: 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6032] | 0.63 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 9864, 96 9865, 60 9866, 16 500, 255 501, 14 502, 153 39182, 94 39183, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5397] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 55013, 104 55014, 12 55015, 116 321, 0 322, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6102] | 0.25 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 44985, 229 44986, 191 44987, 13 191, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6071] | 0.32 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 34210, 233 34211, 85 34212, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6135] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 4815, 229 4816, 171 4817, 47 171, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6168] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 43485, 245 43486, 10 43487, 131 10, 30 52, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6103] | 0.31 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 16161, 229 16162, 85 16163, 233 85, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json-i5234] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/11.json 11987, 17 11988, 178 11989, 0 178, 126 179, 182 46749, 205 base: 178 lo: 126 hi: 182 deref_base: 46718 y_register: 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6072] | 0.19 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 59471, 233 59472, 110 59473, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5398] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 23904, 104 23905, 149 23906, 220 410, 55 411, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6136] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 28047, 229 28048, 25 28049, 113 25, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6104] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 35355, 229 35356, 108 35357, 115 108, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6033] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 50107, 96 50108, 43 50109, 235 257, 91 258, 110 259, 20 5230, 197 5231, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6073] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 19014, 233 19015, 10 19016, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6169] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 4929, 245 4930, 223 4931, 19 223, 101 151, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6137] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 4676, 229 4677, 241 4678, 149 241, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json-i5399] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/68.json 61999, 104 62000, 19 62001, 4 259, 92 260, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6105] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 9771, 229 9772, 143 9773, 254 143, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json-i5671] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/3e.json 52735, 62 52736, 158 52737, 66 17044, 62 17300, 246 52738, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6074] | 0.20 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 59054, 233 59055, 94 59056, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6201] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 11039, 237 11040, 193 11041, 192 49345, 42 11042, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6170] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 10469, 245 10470, 45 10471, 211 45, 187 163, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6034] | 0.60 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 3657, 96 3658, 192 3659, 109 273, 12 274, 140 275, 83 21388, 122 21389, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6138] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 20426, 229 20427, 202 20428, 114 202, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6075] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 51354, 233 51355, 231 51356, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6233] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 59438, 237 59439, 210 59440, 58 15058, 72 59441, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6106] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 4977, 229 4978, 161 4979, 237 161, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6264] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 13215, 253 13216, 7 13217, 184 47204, 1 13218, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6171] | 0.40 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 30268, 245 30269, 114 30270, 225 114, 214 198, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6202] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 39232, 237 39233, 225 39234, 74 19169, 51 39235, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6139] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 44506, 229 44507, 242 44508, 195 242, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6076] | 0.19 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 18834, 233 18835, 85 18836, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6234] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 3821, 237 3822, 91 3823, 119 30555, 254 3824, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6107] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 48445, 229 48446, 149 48447, 14 149, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6077] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 63428, 233 63429, 134 63430, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6035] | 0.62 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 19524, 96 19525, 165 19526, 183 392, 135 393, 94 394, 199 51038, 118 51039, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6265] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 20666, 253 20667, 5 20668, 247 63422, 224 20669, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6172] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 38106, 245 38107, 93 38108, 189 93, 129 168, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6140] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 34126, 229 34127, 115 34128, 117 115, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6203] | 0.29 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 5655, 237 5656, 168 5657, 31 8104, 84 5658, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6078] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 38433, 233 38434, 23 38435, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6108] | 0.24 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 2928, 229 2929, 222 2930, 147 222, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6235] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 64035, 237 64036, 11 64037, 152 38923, 63 64038, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6266] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 53615, 253 53616, 98 53617, 101 26079, 223 53618, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6000] | 0.67 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 52705, 96 52706, 141 52707, 151 501, 184 502, 199 503, 217 55751, 188 55752, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6204] | 0.50 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 17193, 237 17194, 122 17195, 33 8570, 46 17196, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json-i5542] | 0.28 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/26.json 63201, 38 63202, 156 63203, 122 156, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6173] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 3253, 245 3254, 58 3255, 243 58, 34 184, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6141] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 26422, 229 26423, 7 26424, 57 7, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6079] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 35820, 233 35821, 138 35822, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6109] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 64385, 229 64386, 205 64387, 15 205, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6036] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 44051, 96 44052, 97 44053, 247 378, 136 379, 83 380, 126 32339, 203 32340, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6142] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 41111, 229 41112, 142 41113, 194 142, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6267] | 0.50 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 32764, 253 32765, 130 32766, 69 17849, 179 32767, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6236] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 37814, 237 37815, 48 37816, 230 58928, 140 37817, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6174] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 16542, 245 16543, 224 16544, 23 224, 124 197, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6080] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 4881, 233 4882, 55 4883, 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6205] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 41465, 237 41466, 174 41467, 47 12206, 183 41468, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6110] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 37734, 229 37735, 125 37736, 66 125, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6001] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 10347, 96 10348, 107 10349, 227 284, 135 285, 195 286, 175 44995, 173 44996, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6037] | 0.61 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 29285, 96 29286, 106 29287, 30 302, 220 303, 187 304, 90 23227, 226 23228, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6143] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 8364, 229 8365, 250 8366, 40 250, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6237] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 4877, 237 4878, 59 4879, 159 40763, 6 4880, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6081] | 0.32 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 52620, 233 52621, 82 52622, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6175] | 0.53 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 28569, 245 28570, 42 28571, 165 42, 46 48, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6268] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 59288, 253 59289, 180 59290, 124 31957, 224 59291, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6111] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 61718, 229 61719, 247 61720, 54 247, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5633] | 0.41 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 47037, 46 47038, 69 47039, 105 26949, 209 47040, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6206] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 56971, 237 56972, 223 56973, 116 29919, 210 56974, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6144] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 6042, 229 6043, 9 6044, 85 9, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6082] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 1736, 233 1737, 37 1738, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6002] | 0.57 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 667, 96 668, 244 669, 74 500, 34 501, 239 502, 125 32239, 183 32240, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6238] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 18311, 237 18312, 32 18313, 119 30496, 143 18314, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6083] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 49566, 233 49567, 131 49568, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6112] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 37701, 229 37702, 184 37703, 16 184, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6038] | 0.69 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 663, 96 664, 80 665, 45 504, 124 505, 209 506, 238 61137, 175 61138, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6269] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 35827, 253 35828, 103 35829, 235 60293, 5 35830, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6145] | 0.41 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 43666, 229 43667, 115 43668, 13 115, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6207] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 46747, 237 46748, 159 46749, 172 44191, 84 46750, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6176] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 64107, 245 64108, 2 64109, 109 2, 92 179, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6084] | 0.20 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 1448, 233 1449, 207 1450, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6113] | 0.24 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 37281, 229 37282, 58 37283, 71 58, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6239] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 61986, 237 61987, 242 61988, 229 58866, 125 61989, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6208] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 22057, 237 22058, 81 22059, 252 64593, 24 22060, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6003] | 0.66 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 46971, 96 46972, 109 46973, 41 479, 131 480, 167 481, 235 60327, 22 60328, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6270] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 24462, 253 24463, 95 24464, 65 16761, 95 24465, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6085] | 0.30 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 52218, 233 52219, 197 52220, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6146] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 63267, 229 63268, 207 63269, 101 207, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6177] | 0.28 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 1535, 245 1536, 165 1537, 94 165, 92 207, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6114] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 13986, 229 13987, 151 13988, 13 151, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6039] | 0.46 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 29420, 96 29421, 15 29422, 230 456, 253 457, 102 458, 32 8294, 130 8295, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6240] | 0.29 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 64945, 237 64946, 141 64947, 211 54157, 174 64948, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6147] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 57763, 229 57764, 144 57765, 115 144, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6086] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 11921, 233 11922, 239 11923, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6178] | 0.49 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 24410, 245 24411, 202 24412, 115 202, 144 44, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6271] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 57099, 253 57100, 114 57101, 173 44401, 108 44657, 102 57102, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6209] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 50125, 237 50126, 165 50127, 111 28581, 111 50128, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6115] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 5036, 229 5037, 211 5038, 36 211, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6087] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 14892, 233 14893, 107 14894, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6241] | 0.52 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 10086, 237 10087, 204 10088, 67 17356, 180 10089, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6004] | 0.48 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 63558, 96 63559, 177 63560, 127 484, 136 485, 67 486, 154 39491, 75 39492, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6040] | 0.59 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 50633, 96 50634, 9 50635, 114 308, 135 309, 161 310, 112 28833, 227 28834, 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6148] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 57418, 229 57419, 0 57420, 116 0, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6272] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 39685, 253 39686, 130 39687, 230 59069, 250 39688, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6210] | 0.32 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 12384, 237 12385, 40 12386, 31 7976, 149 12387, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6179] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 51564, 245 51565, 112 51566, 202 112, 109 26, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6116] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 10562, 229 10563, 249 10564, 29 249, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6088] | 0.21 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 1658, 233 1659, 68 1660, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5637] | 0.47 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 28077, 46 28078, 220 28079, 183 47068, 110 28080, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6149] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 35003, 229 35004, 8 35005, 211 8, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6005] | 0.60 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 2286, 96 2287, 241 2288, 91 491, 120 492, 156 493, 228 58524, 243 58525, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6089] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 6094, 233 6095, 68 6096, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6242] | 0.49 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 39990, 237 39991, 10 39992, 44 11274, 1 39993, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6211] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 19623, 237 19624, 253 19625, 141 36349, 85 19626, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6273] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 16249, 253 16250, 231 16251, 192 49344, 152 49600, 117 16252, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6117] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 14234, 229 14235, 128 14236, 16 128, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6041] | 0.59 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 19250, 96 19251, 176 19252, 98 266, 240 267, 155 268, 16 4251, 8 4252, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6180] | 0.27 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 45901, 245 45902, 171 45903, 190 171, 181 22, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6150] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 6144, 245 6145, 55 6146, 162 55, 159 101, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6090] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 32227, 233 32228, 42 32229, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6181] | 0.51 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 64471, 245 64472, 73 64473, 33 73, 1 217, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6243] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 23062, 237 23063, 123 23064, 168 43131, 2 23065, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6212] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 45602, 237 45603, 96 45604, 74 19040, 251 45605, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6118] | 0.22 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 56741, 229 56742, 60 56743, 162 60, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6091] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 12600, 233 12601, 13 12602, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6006] | 0.60 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 5886, 96 5887, 123 5888, 142 376, 25 377, 156 378, 230 59036, 251 59037, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6274] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 6847, 253 6848, 202 6849, 204 52477, 8 6850, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6042] | 0.58 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 58159, 96 58160, 194 58161, 212 416, 163 417, 64 418, 54 13888, 26 13889, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6151] | 0.30 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 26455, 245 26456, 246 26457, 192 246, 165 152, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6119] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 63464, 229 63465, 51 63466, 174 51, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6244] | 0.55 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 62220, 237 62221, 32 62222, 11 2848, 93 62223, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6092] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 11452, 233 11453, 90 11454, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6182] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 21432, 245 21433, 138 21434, 81 138, 198 66, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6213] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 60813, 237 60814, 124 60815, 80 20604, 233 60816, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6275] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 58790, 253 58791, 69 58792, 13 3403, 171 58793, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6152] | 0.51 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 2199, 245 2200, 154 2201, 94 154, 217 125, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6120] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 17254, 229 17255, 204 17256, 25 204, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6093] | 0.32 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 25178, 233 25179, 113 25180, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6007] | 0.66 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 63940, 96 63941, 106 63942, 133 260, 122 261, 148 262, 104 26772, 143 26773, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6183] | 0.53 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 6779, 245 6780, 81 6781, 74 81, 131 98, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6043] | 0.50 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 8067, 96 8068, 125 8069, 210 470, 108 471, 127 472, 189 48511, 169 48512, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6245] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 48935, 237 48936, 36 48937, 190 48676, 121 48938, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6214] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 51609, 237 51610, 124 51611, 203 52092, 204 51612, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6295] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 23082, 253 23083, 223 23084, 102 26219, 75 26475, 83 23085, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6276] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 17125, 253 17126, 4 17127, 243 62237, 30 17128, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6121] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 26170, 229 26171, 83 26172, 65 83, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6094] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 51057, 233 51058, 113 51059, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6153] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 49682, 245 49683, 146 49684, 176 146, 235 241, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6215] | 0.55 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 32280, 237 32281, 172 32282, 33 8620, 120 32283, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6095] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 62279, 233 62280, 4 62281, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6184] | 0.47 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 46944, 245 46945, 157 46946, 135 157, 236 240, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6246] | 0.28 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 61747, 237 61748, 244 61749, 194 49908, 191 61750, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6044] | 0.60 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 60511, 96 60512, 139 60513, 209 422, 114 423, 102 424, 33 8550, 10 8551, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6122] | 0.40 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 54894, 229 54895, 209 54896, 28 209, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6296] | 0.60 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 7688, 253 7689, 214 7690, 136 34945, 72 35201, 114 7691, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6008] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 37862, 96 37863, 150 37864, 171 419, 208 420, 98 421, 50 12898, 149 12899, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6277] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 50977, 253 50978, 233 50979, 151 38768, 128 39024, 117 50980, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6154] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 52841, 245 52842, 204 52843, 54 204, 114 152, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6096] | 0.20 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 56541, 233 56542, 57 56543, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6247] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 32542, 237 32543, 155 32544, 170 43675, 74 32545, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6185] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 22919, 245 22920, 49 22921, 107 49, 213 223, 18 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6123] | 0.27 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 23644, 229 23645, 237 23646, 161 237, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6216] | 0.44 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 18919, 237 18920, 183 18921, 155 39863, 10 18922, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6097] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 1472, 233 1473, 159 1474, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6278] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 10170, 253 10171, 229 10172, 198 50928, 33 10173, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6009] | 0.63 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 26628, 96 26629, 8 26630, 171 360, 105 361, 20 362, 137 35092, 192 35093, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6045] | 0.58 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 63391, 96 63392, 48 63393, 37 433, 219 434, 80 435, 106 27216, 53 27217, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6297] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 50185, 253 50186, 247 50187, 171 43928, 10 44184, 228 50188, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6155] | 0.28 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 39618, 245 39619, 145 39620, 215 145, 99 233, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6124] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 18928, 229 18929, 47 18930, 8 47, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6325] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 24800, 249 24801, 254 24802, 166 42538, 201 42794, 9 24803, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6248] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 58985, 237 58986, 121 58987, 12 3193, 98 58988, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6098] | 0.23 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 9318, 233 9319, 12 9320, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6186] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 14497, 245 14498, 21 14499, 38 21, 218 36, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6217] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 44042, 237 44043, 110 44044, 92 23662, 136 44045, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6279] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 2161, 253 2162, 254 2163, 126 32476, 184 32732, 5 2164, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6156] | 0.50 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 25033, 245 25034, 103 25035, 65 103, 128 54, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6354] | 0.56 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 62449, 225 62450, 207 62451, 189 207, 46 223, 80 224, 99 25424, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6249] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 33780, 237 33781, 172 33782, 32 8364, 81 33783, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6125] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 48612, 229 48613, 116 48614, 211 116, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6298] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 46687, 253 46688, 0 46689, 58 14881, 185 46690, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6187] | 0.50 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 60217, 245 60218, 13 60219, 197 13, 116 95, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6326] | 0.60 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 21933, 249 21934, 24 21935, 245 62730, 56 62986, 157 21936, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6010] | 0.60 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 30973, 96 30974, 85 30975, 163 503, 182 504, 160 505, 217 55712, 58 55713, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6046] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 31636, 96 31637, 161 31638, 189 480, 94 481, 223 482, 75 19423, 58 19424, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6218] | 0.42 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 3019, 237 3020, 53 3021, 84 21557, 197 3022, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6126] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 31717, 229 31718, 48 31719, 46 48, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6280] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 59357, 253 59358, 21 59359, 149 38264, 24 59360, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6157] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 55177, 245 55178, 219 55179, 253 219, 104 149, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6299] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 31785, 253 31786, 2 31787, 173 44386, 115 31788, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6355] | 0.57 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 14093, 225 14094, 180 14095, 5 180, 238 35, 127 36, 199 51071, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6250] | 0.46 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 49705, 253 49706, 137 49707, 223 57225, 40 49708, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6188] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 20098, 245 20099, 193 20100, 105 193, 1 127, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6047] | 0.57 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 25066, 96 25067, 177 25068, 96 342, 250 343, 45 344, 211 54061, 239 54062, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6158] | 0.54 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 26528, 245 26529, 68 26530, 144 68, 81 249, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6219] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 42117, 237 42118, 48 42119, 115 29488, 17 42120, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6327] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 9308, 249 9309, 132 9310, 54 14038, 50 9311, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6011] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 13967, 96 13968, 21 13969, 151 330, 4 331, 73 332, 137 35145, 0 35146, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5645] | 0.47 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 47770, 46 47771, 43 47772, 187 47915, 224 47773, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6127] | 0.25 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 49306, 229 49307, 65 49308, 2 65, 103 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6281] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 42791, 253 42792, 29 42793, 54 14007, 147 42794, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6300] | 0.41 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 65263, 249 65264, 125 65265, 227 58208, 5 58464, 104 65266, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6220] | 0.50 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 50402, 237 50403, 136 50404, 167 42888, 43 50405, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6189] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 3841, 245 3842, 157 3843, 68 157, 0 58, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6251] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 51304, 253 51305, 183 51306, 197 50666, 74 51307, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6128] | 0.33 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 17632, 229 17633, 129 17634, 3 129, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6356] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 10916, 225 10917, 161 10918, 192 161, 86 115, 50 116, 95 24370, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6328] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 24852, 249 24853, 246 24854, 116 29832, 109 30088, 51 24855, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6159] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 37809, 245 37810, 203 37811, 90 203, 222 198, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6048] | 0.65 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 21754, 96 21755, 196 21756, 99 340, 156 341, 64 342, 51 13120, 233 13121, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6012] | 0.58 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 46850, 96 46851, 129 46852, 3 505, 44 506, 231 507, 255 65511, 59 65512, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6282] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 4454, 253 4455, 153 4456, 128 32782, 89 33038, 50 4457, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6301] | 0.56 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 46547, 249 46548, 90 46549, 48 12381, 12 46550, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6190] | 0.50 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 24243, 245 24244, 242 24245, 87 242, 138 60, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6129] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 62944, 229 62945, 121 62946, 153 121, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6221] | 0.40 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 57321, 237 57322, 223 57323, 106 27359, 211 57324, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6252] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 53195, 253 53196, 54 53197, 17 4550, 223 53198, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6329] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 64703, 249 64704, 229 64705, 203 52080, 74 52336, 92 64706, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6357] | 0.62 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 55501, 225 55502, 27 55503, 106 27, 10 86, 57 87, 94 24121, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6160] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 59735, 245 59736, 53 59737, 226 53, 235 229, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6283] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 405, 253 406, 92 407, 46 11786, 161 12042, 225 408, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6130] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 29765, 229 29766, 156 29767, 20 156, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6013] | 0.68 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 57753, 96 57754, 160 57755, 48 379, 246 380, 61 381, 1 317, 174 318, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6191] | 0.47 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 55485, 245 55486, 218 55487, 237 218, 234 81, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6222] | 0.24 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 923, 237 924, 195 925, 199 51139, 95 926, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6302] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 53115, 249 53116, 10 53117, 213 54643, 171 53118, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6049] | 0.65 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 43971, 96 43972, 61 43973, 175 493, 162 494, 55 495, 16 4151, 179 4152, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6253] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 60229, 253 60230, 165 60231, 131 33682, 32 33938, 173 60232, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6330] | 0.38 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 45803, 249 45804, 135 45805, 213 54567, 111 54823, 214 45806, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6284] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 22632, 253 22633, 159 22634, 47 12205, 212 22635, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6161] | 0.27 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 48910, 245 48911, 129 48912, 101 129, 177 218, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6223] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 38417, 237 38418, 216 38419, 4 1240, 17 38420, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6131] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 36259, 229 36260, 175 36261, 110 175, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6382] | 0.56 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 41911, 225 41912, 183 41913, 180 183, 97 17, 221 18, 64 16605, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6358] | 0.46 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 27538, 225 27539, 76 27540, 3 76, 71 47, 209 48, 104 26833, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6192] | 0.28 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 32528, 245 32529, 230 32530, 114 230, 252 101, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json-i5600] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/2e.json 19996, 46 19997, 161 19998, 170 43681, 160 19999, 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6303] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 31183, 249 31184, 111 31185, 250 64248, 204 31186, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6254] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 12689, 253 12690, 178 12691, 221 56665, 6 56921, 50 12692, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6162] | 0.49 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 14560, 245 14561, 127 14562, 153 127, 203 24, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6331] | 0.60 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 9532, 249 9533, 221 9534, 250 64180, 121 64436, 239 9535, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6285] | 0.51 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 7840, 253 7841, 107 7842, 229 58815, 75 7843, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6014] | 0.47 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 27073, 96 27074, 156 27075, 150 501, 60 502, 88 503, 142 36440, 14 36441, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6132] | 0.23 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 31813, 229 31814, 54 31815, 211 54, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6050] | 0.25 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 60024, 233 60025, 32 60026, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6410] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 50269, 241 50270, 56 50271, 42 56, 141 57, 198 50804, 68 51060, 132 base: 56 lo: 141 hi: 198 deref_base: 50829 y_register: 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6193] | 0.54 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 10616, 245 10617, 127 10618, 222 127, 23 151, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6224] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 7158, 237 7159, 239 7160, 180 46319, 199 7161, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6383] | 0.47 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 49568, 225 49569, 126 49570, 54 126, 181 102, 16 103, 187 47888, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6359] | 0.59 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 59796, 225 59797, 205 59798, 218 205, 38 152, 164 153, 56 14500, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6437] | 0.54 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 16518, 241 16519, 205 16520, 114 205, 227 206, 108 27730, 119 27986, 125 base: 205 lo: 227 hi: 108 deref_base: 27875 y_register: 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6304] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 53400, 249 53401, 109 53402, 21 5443, 206 5699, 197 53403, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json-i6133] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e5.json 12322, 229 12323, 252 12324, 27 252, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6255] | 0.55 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 15728, 253 15729, 217 15730, 130 33301, 140 33557, 198 15731, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6051] | 0.21 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 45934, 233 45935, 53 45936, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6163] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 40299, 245 40300, 13 40301, 32 13, 230 184, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6286] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 47152, 253 47153, 31 47154, 161 41352, 9 47155, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6015] | 0.68 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 36018, 96 36019, 60 36020, 23 277, 35 278, 112 279, 29 7536, 139 7537, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6332] | 0.51 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 64356, 249 64357, 254 64358, 174 44702, 84 44958, 89 64359, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6052] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 62291, 233 62292, 41 62293, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6411] | 0.58 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 51467, 241 51468, 203 51469, 240 203, 42 204, 101 25932, 139 base: 203 lo: 42 hi: 101 deref_base: 25898 y_register: 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6225] | 0.27 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 62568, 237 62569, 100 62570, 245 62820, 11 62571, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6463] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 42394, 56 42395, 251 42396, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6194] | 0.29 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 6607, 245 6608, 162 6609, 162 162, 97 22, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6384] | 0.57 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 30925, 225 30926, 190 30927, 74 190, 88 30, 157 31, 1 413, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6305] | 0.44 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 12062, 249 12063, 91 12064, 222 57000, 109 12065, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6438] | 0.47 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 10003, 241 10004, 242 10005, 221 242, 72 243, 17 4370, 234 4626, 238 base: 242 lo: 72 hi: 17 deref_base: 4424 y_register: 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6360] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 38598, 225 38599, 247 38600, 99 247, 108 7, 21 8, 205 52501, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6164] | 0.28 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 24297, 245 24298, 133 24299, 245 133, 112 228, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6256] | 0.47 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 62359, 253 62360, 253 62361, 90 23103, 127 23359, 152 62362, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6053] | 0.22 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 45710, 233 45711, 223 45712, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6226] | 0.54 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 8518, 237 8519, 189 8520, 91 23485, 83 8521, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6287] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 59946, 253 59947, 151 59948, 161 41295, 11 41551, 31 59949, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6195] | 0.49 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 30420, 245 30421, 205 30422, 226 205, 131 201, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6464] | 0.22 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 39698, 56 39699, 105 39700, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6333] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 22715, 249 22716, 212 22717, 15 3915, 198 4171, 222 22718, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6054] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 5608, 233 5609, 26 5610, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6165] | 0.47 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 2203, 245 2204, 128 2205, 220 128, 42 69, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6412] | 0.47 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 10, 241 11, 215 12, 149 215, 68 216, 84 21643, 153 base: 215 lo: 68 hi: 84 deref_base: 21572 y_register: 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6306] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 54867, 249 54868, 111 54869, 107 27619, 97 54870, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6016] | 0.53 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 26503, 96 26504, 71 26505, 247 305, 90 306, 206 307, 10 2766, 141 2767, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6465] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 62772, 56 62773, 29 62774, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6361] | 0.57 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 56474, 225 56475, 84 56476, 83 84, 7 82, 94 83, 210 53854, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6439] | 0.60 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 58263, 241 58264, 59 58265, 145 59, 224 60, 19 4950, 133 5206, 102 base: 59 lo: 224 hi: 19 deref_base: 5088 y_register: 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6385] | 0.62 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 24614, 225 24615, 182 24616, 1 182, 176 158, 34 159, 227 58146, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6257] | 0.45 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 44560, 253 44561, 246 44562, 210 53894, 165 54150, 216 44563, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6288] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 7776, 253 7777, 233 7778, 53 13729, 86 13985, 8 7779, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6227] | 0.28 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 42313, 237 42314, 49 42315, 110 28209, 141 42316, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6196] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 61143, 245 61144, 169 61145, 169 169, 230 78, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6055] | 0.20 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 61580, 233 61581, 121 61582, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6334] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 13097, 249 13098, 103 13099, 207 53021, 213 53277, 75 13100, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6307] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 4570, 249 4571, 13 4572, 227 58152, 44 4573, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6466] | 0.21 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 14244, 56 14245, 50 14246, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6166] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 48821, 245 48822, 194 48823, 187 194, 163 32, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6413] | 0.63 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 48257, 241 48258, 200 48259, 24 200, 187 201, 185 47458, 97 47714, 101 base: 200 lo: 187 hi: 185 deref_base: 47547 y_register: 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6056] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 22401, 233 22402, 124 22403, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6228] | 0.51 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 50314, 237 50315, 223 50316, 156 40159, 38 50317, 249 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6017] | 0.66 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 7170, 96 7171, 57 7172, 59 433, 204 434, 61 435, 194 49725, 228 49726, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6289] | 0.42 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 30725, 253 30726, 224 30727, 126 32293, 75 32549, 130 30728, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6467] | 0.33 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 38929, 56 38930, 241 38931, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6258] | 0.44 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 53476, 253 53477, 182 53478, 198 50714, 233 50970, 16 53479, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6362] | 0.65 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 53115, 225 53116, 96 53117, 185 96, 93 91, 222 92, 100 25822, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6440] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 52460, 241 52461, 151 52462, 135 151, 42 152, 22 5700, 155 base: 151 lo: 42 hi: 22 deref_base: 5674 y_register: 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6386] | 0.49 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 56705, 225 56706, 142 56707, 137 142, 73 99, 169 100, 74 19113, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6197] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 36192, 245 36193, 100 36194, 136 100, 123 152, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6335] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 64973, 249 64974, 10 64975, 211 54237, 244 64976, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6057] | 0.20 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 35743, 233 35744, 121 35745, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6308] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 30804, 249 30805, 120 30806, 226 57878, 41 58134, 196 30807, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6167] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 62636, 245 62637, 36 62638, 203 36, 23 181, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6468] | 0.27 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 21460, 56 21461, 69 21462, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6290] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 56606, 253 56607, 236 56608, 17 4510, 22 4766, 224 56609, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6259] | 0.47 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 40505, 253 40506, 151 40507, 232 59490, 123 59746, 71 40508, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6229] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 49941, 237 49942, 231 49943, 13 3559, 13 49944, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6058] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 48311, 233 48312, 5 48313, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6414] | 0.50 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 51377, 241 51378, 13 51379, 173 13, 116 14, 186 47688, 206 47944, 194 base: 13 lo: 116 hi: 186 deref_base: 47732 y_register: 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6441] | 0.58 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 2779, 241 2780, 5 2781, 27 5, 3 6, 145 37163, 103 base: 5 lo: 3 hi: 145 deref_base: 37123 y_register: 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6198] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 63344, 245 63345, 26 63346, 118 26, 220 100, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6387] | 0.59 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 55506, 225 55507, 82 55508, 139 82, 78 28, 32 29, 53 13600, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6514] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 51485, 248 51486, 118 51487, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6018] | 0.66 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 32258, 96 32259, 214 32260, 206 356, 101 357, 7 358, 159 40711, 206 40712, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6469] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 18753, 56 18754, 33 18755, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6336] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 20767, 249 20768, 247 20769, 84 21561, 84 21817, 102 20770, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6363] | 0.47 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 52600, 225 52601, 111 52602, 29 111, 13 249, 78 250, 42 10830, 28 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6309] | 0.55 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 63758, 249 63759, 135 63760, 70 18063, 182 63761, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6489] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 34945, 56 34946, 70 34947, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6059] | 0.24 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 49096, 233 49097, 167 49098, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json-i6199] | 0.52 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f5.json 42828, 245 42829, 121 42830, 15 121, 34 191, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6538] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 8597, 248 8598, 168 8599, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6260] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 30598, 253 30599, 103 30600, 136 34989, 4 30601, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6230] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 49601, 237 49602, 103 49603, 133 34151, 58 49604, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6515] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 35126, 248 35127, 238 35128, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6291] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 30359, 253 30360, 167 30361, 209 53612, 22 53868, 93 30362, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6490] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 50124, 56 50125, 145 50126, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6415] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 62669, 241 62670, 107 62671, 170 107, 240 108, 193 49572, 95 49828, 210 base: 107 lo: 240 hi: 193 deref_base: 49648 y_register: 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6470] | 0.20 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 15276, 56 15277, 30 15278, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6337] | 0.56 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 13441, 249 13442, 199 13443, 110 28359, 230 13444, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6442] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 40731, 241 40732, 42 40733, 128 42, 167 43, 130 33392, 38 33648, 238 base: 42 lo: 167 hi: 130 deref_base: 33447 y_register: 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6060] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 32057, 233 32058, 179 32059, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6364] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 53914, 225 53915, 24 53916, 253 24, 145 111, 18 112, 237 60690, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6539] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 13779, 248 13780, 139 13781, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6388] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 34651, 225 34652, 44 34653, 202 44, 27 166, 212 167, 228 58580, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6516] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 5458, 248 5459, 187 5460, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6471] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 47239, 56 47240, 171 47241, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6310] | 0.48 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 21997, 249 21998, 151 21999, 191 49121, 18 22000, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6019] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 6745, 96 6746, 55 6747, 44 338, 233 339, 200 340, 136 35016, 65 35017, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6491] | 0.24 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 55196, 56 55197, 179 55198, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6261] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 41847, 253 41848, 195 41849, 65 16736, 55 16992, 182 41850, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6200] | 0.46 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 1767, 237 1768, 199 1769, 107 27591, 63 1770, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6231] | 0.27 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 20739, 237 20740, 209 20741, 127 32721, 203 20742, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6416] | 0.60 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 20027, 241 20028, 165 20029, 212 165, 70 166, 65 16701, 42 16957, 14 base: 165 lo: 70 hi: 65 deref_base: 16710 y_register: 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6061] | 0.23 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 7675, 233 7676, 85 7677, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6443] | 0.61 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 40947, 241 40948, 150 40949, 95 150, 7 151, 208 53372, 245 base: 150 lo: 7 hi: 208 deref_base: 53255 y_register: 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6292] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 16527, 253 16528, 14 16529, 100 25716, 87 16530, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6540] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 30928, 248 30929, 205 30930, 176 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6472] | 0.19 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 2352, 56 2353, 249 2354, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6517] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 4355, 248 4356, 22 4357, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6492] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 57844, 56 57845, 211 57846, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6365] | 0.54 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 56727, 225 56728, 26 56729, 158 26, 68 55, 232 56, 191 49128, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6338] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 51187, 249 51188, 165 51189, 132 33857, 248 34113, 201 51190, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json-i6232] | 0.46 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/ed.json 16519, 237 16520, 202 16521, 10 2762, 69 16522, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6389] | 0.59 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 42382, 225 42383, 37 42384, 157 37, 93 223, 220 224, 180 46300, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json-i6062] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e9.json 49468, 233 49469, 205 49470, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6473] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 18249, 56 18250, 25 18251, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6311] | 0.40 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 52953, 249 52954, 158 52955, 102 26342, 203 52956, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6541] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 59093, 248 59094, 181 59095, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6262] | 0.59 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 21454, 253 21455, 120 21456, 119 30637, 217 21457, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6020] | 0.57 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 16759, 96 16760, 206 16761, 193 358, 240 359, 118 360, 190 48758, 217 48759, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6518] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 26628, 248 26629, 107 26630, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6562] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 31432, 120 31433, 58 31434, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6493] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 36336, 56 36337, 179 36338, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6585] | 0.32 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 3218, 120 3219, 165 3220, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6293] | 0.43 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 63068, 253 63069, 6 63070, 9 2377, 211 63071, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6417] | 0.47 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 7475, 241 7476, 116 7477, 11 116, 47 117, 137 35249, 30 base: 116 lo: 47 hi: 137 deref_base: 35119 y_register: 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6630] | 0.26 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 22997, 133 22998, 22 22999, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6563] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 30001, 120 30002, 205 30003, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6339] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 13130, 249 13131, 58 13132, 83 21298, 169 21554, 26 13133, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6474] | 0.19 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 65018, 56 65019, 26 65020, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6542] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 33266, 248 33267, 138 33268, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6444] | 0.46 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 13167, 241 13168, 119 13169, 254 119, 1 120, 65 16714, 23 base: 119 lo: 1 hi: 65 deref_base: 16641 y_register: 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6519] | 0.18 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 8329, 248 8330, 228 8331, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6608] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 18342, 133 18343, 107 18344, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6312] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 25666, 249 25667, 11 25668, 154 39512, 18 25669, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6366] | 0.61 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 26429, 225 26430, 82 26431, 170 82, 191 214, 135 215, 188 48263, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6494] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 63478, 56 63479, 231 63480, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6586] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 61075, 120 61076, 16 61077, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6390] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 63489, 225 63490, 158 63491, 189 158, 233 28, 197 29, 86 22213, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6475] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 48611, 56 48612, 99 48613, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6564] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 45177, 120 45178, 142 45179, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6631] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 31921, 133 31922, 81 31923, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6520] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 64938, 248 64939, 207 64940, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6294] | 0.44 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 10070, 253 10071, 235 10072, 15 3894, 127 4150, 151 10073, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6021] | 0.73 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 22690, 96 22691, 145 22692, 45 292, 101 293, 161 294, 215 55201, 249 55202, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6543] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 35332, 248 35333, 173 35334, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json-i6263] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/fd.json 50463, 253 50464, 92 50465, 202 51952, 114 50466, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6609] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 36005, 133 36006, 11 36007, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6587] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 17188, 120 17189, 201 17190, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6340] | 0.42 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 18526, 249 18527, 64 18528, 7 1814, 105 2070, 167 18529, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6418] | 0.49 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 60822, 241 60823, 145 60824, 10 145, 231 146, 252 64730, 120 64986, 83 base: 145 lo: 231 hi: 252 deref_base: 64743 y_register: 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6652] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 29805, 149 29806, 214 29807, 52 214, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6495] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 22382, 56 22383, 211 22384, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6445] | 0.57 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 61989, 241 61990, 27 61991, 200 27, 129 28, 226 58098, 219 base: 27 lo: 129 hi: 226 deref_base: 57985 y_register: 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6313] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 46265, 249 46266, 123 46267, 183 47023, 145 46268, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6476] | 0.22 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 50275, 56 50276, 60 50277, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6632] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 18766, 133 18767, 26 18768, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6565] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 20577, 120 20578, 53 20579, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6521] | 0.17 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 64813, 248 64814, 120 64815, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6544] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 59938, 248 59939, 45 59940, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6391] | 0.63 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 9829, 225 9830, 172 9831, 254 172, 173 77, 42 78, 140 35882, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6367] | 0.47 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 12007, 225 12008, 187 12009, 108 187, 84 134, 62 135, 86 22078, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6496] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 22834, 56 22835, 146 22836, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6610] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 38092, 133 38093, 202 38094, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6673] | 0.41 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 40734, 149 40735, 134 40736, 95 134, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6693] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 6267, 149 6268, 162 6269, 186 162, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6588] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 62854, 120 62855, 124 62856, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6522] | 0.38 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 32881, 248 32882, 213 32883, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6477] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 65462, 56 65463, 175 65464, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6566] | 0.30 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 20960, 120 20961, 119 20962, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6341] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 46783, 249 46784, 198 46785, 32 8355, 47 8611, 184 46786, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6545] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 1285, 248 1286, 115 1287, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6653] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 27488, 149 27489, 92 27490, 162 92, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6419] | 0.56 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 9490, 241 9491, 101 9492, 32 101, 177 102, 8 2148, 53 2404, 179 base: 101 lo: 177 hi: 8 deref_base: 2225 y_register: 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6633] | 0.18 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 33832, 133 33833, 206 33834, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6314] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 21577, 249 21578, 67 21579, 53 13729, 206 21580, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6589] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 2597, 120 2598, 10 2599, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6022] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 9614, 96 9615, 230 9616, 199 335, 205 336, 29 337, 36 9245, 219 9246, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6497] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 47189, 56 47190, 136 47191, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6446] | 0.48 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 1237, 241 1238, 141 1239, 2 141, 248 142, 0 59, 82 315, 147 base: 141 lo: 248 hi: 0 deref_base: 248 y_register: 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6611] | 0.23 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 4975, 133 4976, 58 4977, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6634] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 37866, 133 37867, 108 37868, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6674] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 50579, 149 50580, 108 50581, 198 108, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6567] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 20148, 120 20149, 23 20150, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6478] | 0.21 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 24153, 56 24154, 128 24155, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6694] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 30471, 149 30472, 228 30473, 123 228, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6523] | 0.20 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 1045, 248 1046, 216 1047, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6368] | 0.44 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 56160, 225 56161, 207 56162, 49 207, 64 66, 24 67, 205 52504, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6546] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 53966, 248 53967, 245 53968, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6590] | 0.21 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 42935, 120 42936, 197 42937, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6392] | 0.49 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 34948, 225 34949, 252 34950, 44 252, 95 49, 149 50, 187 48021, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6612] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 42687, 133 42688, 182 42689, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6498] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 10175, 56 10176, 82 10177, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6342] | 0.55 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 26346, 249 26347, 102 26348, 84 21660, 3 26349, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6654] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 44858, 149 44859, 227 44860, 90 227, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6568] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 12727, 120 12728, 180 12729, 7 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6713] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 6135, 141 6136, 11 6137, 27 6138, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6479] | 0.38 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 21316, 56 21317, 12 21318, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6524] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 62423, 248 62424, 10 62425, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6695] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 29748, 149 29749, 172 29750, 68 172, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6315] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 61838, 249 61839, 184 61840, 239 61236, 39 61492, 84 61841, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6635] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 52699, 133 52700, 140 52701, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6547] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 20328, 248 20329, 253 20330, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6420] | 0.48 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 41828, 241 41829, 117 41830, 219 117, 166 118, 23 6008, 100 6264, 255 base: 117 lo: 166 hi: 23 deref_base: 6054 y_register: 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6023] | 0.60 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 56227, 96 56228, 73 56229, 255 296, 183 297, 122 298, 250 64122, 226 64123, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6591] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 1176, 120 1177, 229 1178, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6675] | 0.45 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 36395, 149 36396, 255 36397, 47 255, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6447] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 24569, 241 24570, 21 24571, 173 21, 91 22, 89 22921, 121 base: 21 lo: 91 hi: 89 deref_base: 22875 y_register: 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6369] | 0.58 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 56697, 225 56698, 233 56699, 45 233, 143 32, 166 33, 133 34214, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6499] | 0.23 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 5614, 56 5615, 135 5616, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6613] | 0.23 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 58905, 133 58906, 155 58907, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6714] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 45780, 141 45781, 180 45782, 222 45783, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6569] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 15695, 120 15696, 106 15697, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6525] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 33218, 248 33219, 79 33220, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6655] | 0.47 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 44431, 149 44432, 245 44433, 249 245, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6480] | 0.24 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 5509, 56 5510, 170 5511, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6696] | 0.54 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 5985, 149 5986, 12 5987, 27 12, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6316] | 0.59 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 57481, 249 57482, 79 57483, 74 18950, 8 19206, 80 57484, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6393] | 0.62 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 35683, 225 35684, 45 35685, 208 45, 145 18, 131 19, 64 16515, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6548] | 0.24 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 62481, 248 62482, 128 62483, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6343] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 36183, 249 36184, 252 36185, 87 22437, 207 22693, 127 36186, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6636] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 26815, 133 26816, 112 26817, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6592] | 0.22 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 42299, 120 42300, 86 42301, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6500] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 26481, 248 26482, 156 26483, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6570] | 0.35 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 11668, 120 11669, 224 11670, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6614] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 13180, 133 13181, 95 13182, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6526] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 61227, 248 61228, 143 61229, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6481] | 0.33 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 20942, 56 20943, 23 20944, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6676] | 0.29 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 47826, 149 47827, 99 47828, 116 99, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6421] | 0.58 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 5264, 241 5265, 163 5266, 173 163, 136 164, 135 34673, 133 34929, 54 base: 163 lo: 136 hi: 135 deref_base: 34696 y_register: 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6448] | 0.58 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 40913, 241 40914, 228 40915, 100 228, 249 229, 185 47388, 23 47644, 255 base: 228 lo: 249 hi: 185 deref_base: 47609 y_register: 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6549] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 31224, 248 31225, 251 31226, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6715] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 15709, 141 15710, 103 15711, 88 15712, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6024] | 0.62 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 2146, 96 2147, 55 2148, 231 265, 124 266, 225 267, 170 43745, 42 43746, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6593] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 6542, 120 6543, 43 6544, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6370] | 0.59 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 55126, 225 55127, 154 55128, 18 154, 167 248, 89 249, 165 42329, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6656] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 43273, 149 43274, 39 43275, 26 39, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6501] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 32739, 248 32740, 147 32741, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6571] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 7069, 120 7070, 42 7071, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6677] | 0.56 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 17358, 149 17359, 45 17360, 197 45, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6615] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 29962, 133 29963, 120 29964, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6697] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 25569, 149 25570, 233 25571, 235 233, 203 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6637] | 0.25 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 26422, 133 26423, 216 26424, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6344] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 11207, 249 11208, 48 11209, 32 8399, 243 11210, 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6527] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 59315, 248 59316, 178 59317, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6550] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 1235, 120 1236, 172 1237, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6482] | 0.24 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 20105, 56 20106, 193 20107, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6317] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 33183, 249 33184, 191 33185, 79 20359, 83 20615, 4 33186, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6394] | 0.50 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 51768, 225 51769, 196 51770, 1 196, 166 226, 216 227, 47 12248, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6594] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 20921, 120 20922, 66 20923, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6572] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 38359, 120 38360, 82 38361, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6716] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 55223, 141 55224, 132 55225, 68 55226, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6502] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 49048, 248 49049, 22 49050, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6657] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 44186, 149 44187, 66 44188, 105 66, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6528] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 47058, 248 47059, 182 47060, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6698] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 25421, 149 25422, 182 25423, 197 182, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6638] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 63873, 133 63874, 202 63875, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6483] | 0.36 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 44561, 56 44562, 29 44563, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6422] | 0.49 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 55922, 241 55923, 125 55924, 107 125, 155 126, 20 5334, 139 base: 125 lo: 155 hi: 20 deref_base: 5275 y_register: 59 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6449] | 0.46 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 29273, 241 29274, 203 29275, 141 203, 172 204, 80 20713, 78 base: 203 lo: 172 hi: 80 deref_base: 20652 y_register: 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6551] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 30750, 120 30751, 212 30752, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6616] | 0.40 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 401, 133 402, 254 403, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6595] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 22825, 120 22826, 209 22827, 65 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json-i6025] | 0.46 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/60.json 52052, 96 52053, 31 52054, 156 470, 221 471, 28 472, 238 60956, 31 60957, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6345] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 10974, 249 10975, 26 10976, 179 45859, 32 10977, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6371] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 22783, 225 22784, 37 22785, 192 37, 121 103, 159 104, 167 42911, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6503] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 65125, 248 65126, 136 65127, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6573] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 65086, 120 65087, 146 65088, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6717] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 51666, 141 51667, 223 51668, 213 51669, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6678] | 0.28 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 1004, 149 1005, 95 1006, 9 95, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6318] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 6116, 249 6117, 177 6118, 188 48181, 54 48437, 28 6119, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6658] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 55765, 149 55766, 174 55767, 26 174, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6552] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 7305, 120 7306, 249 7307, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6529] | 0.24 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 50163, 248 50164, 57 50165, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6699] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 39356, 149 39357, 243 39358, 101 243, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6484] | 0.22 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 11035, 56 11036, 173 11037, 51 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6395] | 0.60 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 62575, 225 62576, 177 62577, 174 177, 165 54, 10 55, 235 60170, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6639] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 56696, 133 56697, 151 56698, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6596] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 46594, 120 46595, 103 46596, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6450] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 22541, 56 22542, 184 22543, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6423] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 12619, 241 12620, 111 12621, 179 111, 96 112, 13 3478, 227 base: 111 lo: 96 hi: 13 deref_base: 3424 y_register: 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6504] | 0.36 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 42686, 248 42687, 30 42688, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6617] | 0.25 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 51713, 133 51714, 13 51715, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6574] | 0.31 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 42521, 120 42522, 221 42523, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6530] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 5061, 248 5062, 53 5063, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6679] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 7868, 149 7869, 209 7870, 137 209, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6485] | 0.32 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 32585, 56 32586, 185 32587, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6732] | 0.44 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 32312, 141 32313, 56 32314, 98 32315, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6659] | 0.58 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 40380, 149 40381, 0 40382, 202 0, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6346] | 0.41 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 859, 249 860, 46 861, 242 62094, 184 862, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6553] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 2594, 120 2595, 17 2596, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6718] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 7054, 141 7055, 223 7056, 208 7057, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6597] | 0.34 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 41792, 120 41793, 120 41794, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6700] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 49817, 141 49818, 170 49819, 102 49820, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6372] | 0.61 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 23924, 225 23925, 243 23926, 62 243, 221 15, 25 16, 0 25, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6319] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 56137, 249 56138, 12 56139, 44 11299, 79 56140, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6618] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 28739, 133 28740, 136 28741, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6640] | 0.26 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 26951, 133 26952, 179 26953, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6451] | 0.25 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 56316, 56 56317, 38 56318, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6575] | 0.21 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 29245, 120 29246, 189 29247, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6505] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 2447, 248 2448, 135 2449, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6424] | 0.64 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 9945, 241 9946, 226 9947, 103 226, 161 227, 114 29277, 10 29533, 57 base: 226 lo: 161 hi: 114 deref_base: 29345 y_register: 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6531] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 20733, 248 20734, 161 20735, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6554] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 41462, 120 41463, 1 41464, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6486] | 0.22 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 42152, 56 42153, 10 42154, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6680] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 38647, 149 38648, 224 38649, 122 224, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6396] | 0.47 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 39908, 225 39909, 19 39910, 121 19, 145 72, 167 73, 11 2983, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6641] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 51099, 133 51100, 133 51101, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6598] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 36161, 120 36162, 162 36163, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6576] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 18166, 120 18167, 213 18168, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6719] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 15104, 141 15105, 238 15106, 12 15107, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6347] | 0.56 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 21565, 249 21566, 45 21567, 168 43014, 56 43270, 114 21568, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6733] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 63943, 141 63944, 104 63945, 167 63946, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6452] | 0.37 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 56307, 56 56308, 66 56309, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6701] | 0.57 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 53603, 141 53604, 153 53605, 76 53606, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6506] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 52752, 248 52753, 204 52754, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6619] | 0.41 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 3640, 133 3641, 244 3642, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6532] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 43554, 248 43555, 138 43556, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6487] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 33436, 56 33437, 209 33438, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6320] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 48236, 249 48237, 2 48238, 3 913, 137 48239, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6660] | 0.29 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 26529, 149 26530, 50 26531, 36 50, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6555] | 0.21 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 41274, 120 41275, 131 41276, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6599] | 0.35 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 34674, 120 34675, 168 34676, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6681] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 61030, 149 61031, 181 61032, 113 181, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6373] | 0.47 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 55892, 225 55893, 68 55894, 85 68, 223 231, 188 232, 99 25532, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6751] | 0.45 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 39676, 157 39677, 13 39678, 166 42596, 3 39679, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6642] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 40319, 133 40320, 149 40321, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6577] | 0.22 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 11870, 120 11871, 101 11872, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6397] | 0.59 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 63362, 225 63363, 88 63364, 238 88, 118 22, 72 23, 69 17736, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6533] | 0.20 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 7763, 248 7764, 4 7765, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6507] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 22284, 248 22285, 203 22286, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6734] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 17606, 141 17607, 62 17608, 230 17609, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6720] | 0.55 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 43110, 141 43111, 179 43112, 207 43113, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6556] | 0.35 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 43223, 120 43224, 136 43225, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6453] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 33525, 56 33526, 206 33527, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6488] | 0.23 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 47499, 56 47500, 19 47501, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6661] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 20846, 149 20847, 254 20848, 17 254, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6620] | 0.22 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 32929, 133 32930, 204 32931, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6425] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 30496, 241 30497, 154 30498, 221 154, 189 155, 98 25343, 59 base: 154 lo: 189 hi: 98 deref_base: 25277 y_register: 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6348] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 25432, 249 25433, 208 25434, 166 42692, 96 42948, 157 25435, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6321] | 0.59 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 32201, 249 32202, 68 32203, 129 33173, 42 32204, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6578] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 32829, 120 32830, 229 32831, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6600] | 0.42 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 5715, 133 5716, 194 5717, 225 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6534] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 53686, 248 53687, 106 53688, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6702] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 34062, 141 34063, 10 34064, 57 34065, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6682] | 0.52 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 54000, 149 54001, 111 54002, 63 111, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6454] | 0.33 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 32446, 56 32447, 103 32448, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6508] | 0.32 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 16403, 248 16404, 109 16405, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6769] | 0.39 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 65064, 157 65065, 138 65066, 141 36216, 224 65067, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6621] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 48266, 133 48267, 37 48268, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6643] | 0.27 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 53629, 133 53630, 184 53631, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6374] | 0.53 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 47131, 225 47132, 149 47133, 149 149, 100 24, 118 25, 7 1910, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6752] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 9341, 157 9342, 85 9343, 23 6141, 48 9344, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6557] | 0.20 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 16682, 120 16683, 133 16684, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6662] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 9002, 149 9003, 148 9004, 155 148, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6735] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 25175, 141 25176, 63 25177, 240 25178, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6703] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 14948, 141 14949, 182 14950, 85 14951, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6426] | 0.60 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 64583, 241 64584, 165 64585, 224 165, 97 166, 214 54970, 223 base: 165 lo: 97 hi: 214 deref_base: 54881 y_register: 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6535] | 0.22 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 54356, 248 54357, 57 54358, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6721] | 0.29 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 53071, 141 53072, 29 53073, 254 53074, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6455] | 0.26 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 8585, 56 8586, 7 8587, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6558] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 9148, 120 9149, 125 9150, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6509] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 12454, 248 12455, 42 12456, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6398] | 0.62 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 53816, 225 53817, 202 53818, 249 202, 186 92, 155 93, 27 7067, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6579] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 65480, 120 65481, 23 65482, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6349] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 28691, 249 28692, 118 28693, 239 61189, 42 61445, 156 28694, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6644] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 20241, 133 20242, 3 20243, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6601] | 0.24 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 58783, 133 58784, 254 58785, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6622] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 31617, 133 31618, 115 31619, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6770] | 0.56 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 15143, 157 15144, 15 15145, 17 4403, 17 15146, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6683] | 0.29 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 52669, 149 52670, 141 52671, 240 141, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6536] | 0.34 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 52354, 248 52355, 250 52356, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6322] | 0.47 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 13369, 249 13370, 148 13371, 72 18580, 102 13372, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6753] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 41538, 157 41539, 78 41540, 202 51773, 236 41541, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6663] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 28502, 149 28503, 119 28504, 141 119, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6580] | 0.34 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 11330, 120 11331, 109 11332, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6736] | 0.37 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 7758, 141 7759, 40 7760, 122 7761, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6704] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 58929, 141 58930, 126 58931, 131 58932, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6510] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 51985, 248 51986, 226 51987, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6722] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 14263, 141 14264, 17 14265, 211 14266, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6456] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 54826, 56 54827, 24 54828, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6602] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 11974, 133 11975, 148 11976, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6375] | 0.63 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 33422, 225 33423, 10 33424, 180 10, 17 22, 41 23, 97 24873, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6559] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 8005, 120 8006, 67 8007, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6645] | 0.39 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 64002, 133 64003, 233 64004, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6684] | 0.38 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 34915, 149 34916, 99 34917, 19 99, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6350] | 0.57 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 48116, 225 48117, 162 48118, 39 162, 17 164, 96 165, 123 31584, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6623] | 0.26 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 7202, 133 7203, 231 7204, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6427] | 0.43 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 57343, 241 57344, 55 57345, 75 55, 68 56, 209 53745, 246 base: 55 lo: 68 hi: 209 deref_base: 53572 y_register: 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6537] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 56715, 248 56716, 49 56717, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6581] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 43268, 120 43269, 92 43270, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6511] | 0.22 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 56968, 248 56969, 47 56970, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6664] | 0.50 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 1707, 149 1708, 98 1709, 119 98, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6737] | 0.49 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 27856, 141 27857, 36 27858, 227 27859, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6705] | 0.37 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 17594, 141 17595, 76 17596, 246 17597, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6560] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 11305, 120 11306, 131 11307, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6399] | 0.49 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 6346, 225 6347, 116 6348, 214 116, 147 68, 169 69, 109 28073, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6457] | 0.26 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 49236, 56 49237, 228 49238, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6723] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 65004, 141 65005, 200 65006, 66 65007, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6771] | 0.46 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 58674, 157 58675, 72 58676, 96 24749, 220 58677, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6603] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 64251, 133 64252, 2 64253, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6323] | 0.48 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 4674, 249 4675, 208 4676, 67 17399, 148 4677, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6754] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 51231, 157 51232, 10 51233, 241 61717, 26 51234, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6624] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 21858, 133 21859, 101 21860, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6787] | 0.57 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 60935, 157 60936, 21 60937, 27 7068, 133 60938, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6582] | 0.36 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 45016, 120 45017, 153 45018, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6646] | 0.25 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 3870, 133 3871, 147 3872, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6512] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 37661, 248 37662, 159 37663, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6685] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 4769, 149 4770, 22 4771, 182 22, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6458] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 34577, 56 34578, 248 34579, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6376] | 0.48 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 68, 225 69, 242 70, 230 242, 199 235, 189 236, 28 7357, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6428] | 0.57 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 20519, 241 20520, 190 20521, 95 190, 92 191, 26 6812, 128 base: 190 lo: 92 hi: 26 deref_base: 6748 y_register: 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6561] | 0.20 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 56482, 120 56483, 27 56484, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6706] | 0.52 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 61911, 141 61912, 250 61913, 154 61914, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6724] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 11534, 141 11535, 71 11536, 232 11537, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6604] | 0.28 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 50737, 133 50738, 118 50739, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6351] | 0.50 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 48783, 225 48784, 96 48785, 92 96, 84 156, 199 157, 125 32199, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6647] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 37064, 133 37065, 181 37066, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6625] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 18605, 133 18606, 132 18607, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6738] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 16313, 141 16314, 179 16315, 169 16316, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6665] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 46718, 149 46719, 97 46720, 128 97, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6772] | 0.48 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 40269, 157 40270, 131 40271, 38 9851, 138 40272, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6400] | 0.57 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 51070, 241 51071, 64 51072, 4 64, 241 65, 35 9204, 21 base: 64 lo: 241 hi: 35 deref_base: 9201 y_register: 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json-i6324] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f9.json 46632, 249 46633, 176 46634, 135 34799, 61 46635, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6583] | 0.20 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 31629, 120 31630, 69 31631, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json-i6513] | 0.20 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f8.json 31249, 248 31250, 152 31251, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6805] | 0.57 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 47163, 153 47164, 7 47165, 214 54983, 210 47166, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6755] | 0.45 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 8394, 157 8395, 24 8396, 103 26570, 28 8397, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6686] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 51900, 149 51901, 0 51902, 0 0, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6459] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 38521, 56 38522, 130 38523, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6605] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 58105, 133 58106, 174 58107, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6788] | 0.50 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 8217, 157 8218, 53 8219, 160 41045, 89 8220, 13 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6666] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 52055, 149 52056, 238 52057, 217 238, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json-i6584] | 0.37 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/78.json 7588, 120 7589, 194 7590, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6725] | 0.55 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 27660, 141 27661, 38 27662, 201 27663, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6839] | 0.41 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 3689, 153 3690, 152 3691, 154 39555, 32 3692, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6648] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 58722, 133 58723, 215 58724, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6377] | 0.43 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 5647, 225 5648, 165 5649, 100 165, 158 136, 135 137, 254 65159, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6460] | 0.35 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 31957, 56 31958, 90 31959, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6626] | 0.25 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 50804, 133 50805, 246 50806, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6707] | 0.29 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 16708, 141 16709, 16 16710, 131 16711, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6739] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 50853, 141 50854, 190 50855, 129 50856, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6429] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 37006, 241 37007, 84 37008, 233 84, 216 85, 150 38449, 118 38705, 215 base: 84 lo: 216 hi: 150 deref_base: 38616 y_register: 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6352] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 4078, 225 4079, 217 4080, 147 217, 153 140, 9 141, 168 43017, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6822] | 0.48 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 51219, 153 51220, 244 51221, 210 53810, 214 51222, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6773] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 49875, 157 49876, 92 49877, 199 51187, 230 49878, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6687] | 0.50 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 40604, 149 40605, 197 40606, 107 197, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6606] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 19933, 133 19934, 228 19935, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6756] | 0.43 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 48124, 157 48125, 62 48126, 42 10993, 235 48127, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6401] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 13550, 241 13551, 6 13552, 246 6, 145 7, 193 49595, 54 base: 6 lo: 145 hi: 193 deref_base: 49553 y_register: 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6627] | 0.31 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 56746, 133 56747, 166 56748, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6667] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 37526, 149 37527, 54 37528, 243 54, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6855] | 0.43 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 24635, 129 24636, 48 24637, 124 48, 246 155, 152 156, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6806] | 0.45 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 25009, 153 25010, 187 25011, 176 45221, 48 25012, 104 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6649] | 0.38 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 15046, 133 15047, 212 15048, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6740] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 4469, 141 4470, 26 4471, 59 4472, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6461] | 0.23 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 56243, 56 56244, 66 56245, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6840] | 0.50 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 61389, 153 61390, 108 61391, 184 47228, 163 61392, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6708] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 42609, 141 42610, 189 42611, 214 42612, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6789] | 0.51 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 19693, 157 19694, 129 19695, 16 4233, 137 19696, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6378] | 0.55 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 26324, 225 26325, 142 26326, 227 142, 142 217, 167 218, 240 61607, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6726] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 48922, 141 48923, 129 48924, 202 48925, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6430] | 0.55 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 56068, 241 56069, 24 56070, 6 24, 28 25, 249 63928, 55 base: 24 lo: 28 hi: 249 deref_base: 63772 y_register: 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6628] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 8489, 133 8490, 116 8491, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6353] | 0.61 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 219, 225 220, 178 221, 237 178, 136 86, 81 87, 175 44881, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6774] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 43895, 157 43896, 34 43897, 234 60126, 255 43898, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json-i6462] | 0.36 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/38.json 45516, 56 45517, 67 45518, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6607] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 7291, 133 7292, 88 7293, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6668] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 30548, 149 30549, 6 30550, 202 6, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6823] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 52040, 153 52041, 124 52042, 184 47353, 75 52043, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6757] | 0.39 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 35306, 157 35307, 170 35308, 100 25717, 85 35309, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6688] | 0.28 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 15317, 149 15318, 170 15319, 86 170, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6402] | 0.48 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 32720, 241 32721, 212 32722, 107 212, 26 213, 97 24896, 248 base: 212 lo: 26 hi: 97 deref_base: 24858 y_register: 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6741] | 0.53 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 57351, 141 57352, 46 57353, 184 57354, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6650] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 34346, 149 34347, 221 34348, 80 221, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6856] | 0.60 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 29107, 129 29108, 130 29109, 177 130, 202 185, 80 186, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6727] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 53406, 141 53407, 52 53408, 158 53409, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6709] | 0.34 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 8520, 141 8521, 24 8522, 137 8523, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6807] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 54055, 153 54056, 34 54057, 181 46530, 220 54058, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6841] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 62507, 153 62508, 122 62509, 49 12706, 81 62510, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6901] | 0.57 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 46586, 145 46587, 185 46588, 228 185, 210 186, 67 17248, 72 base: 185 lo: 210 hi: 67 deref_base: 17362 y_register: 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6790] | 0.41 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 14044, 157 14045, 100 14046, 177 45497, 227 14047, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json-i6629] | 0.39 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/85.json 3302, 133 3303, 255 3304, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6886] | 0.49 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 39418, 129 39419, 213 39420, 247 213, 113 167, 5 168, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6379] | 0.61 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 29526, 225 29527, 178 29528, 122 178, 175 140, 164 141, 74 19108, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6689] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 16239, 149 16240, 125 16241, 7 125, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6669] | 0.53 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 9148, 149 9149, 69 9150, 166 69, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6775] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 31031, 157 31032, 133 31033, 73 18855, 63 31034, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6758] | 0.52 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 11480, 157 11481, 180 11482, 116 29697, 52 11483, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6824] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 49687, 153 49688, 193 49689, 132 33931, 148 49690, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6710] | 0.53 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 44343, 141 44344, 164 44345, 145 44346, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6728] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 20842, 141 20843, 181 20844, 235 20845, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6431] | 0.45 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 36281, 241 36282, 249 36283, 140 249, 48 250, 77 19941, 215 base: 249 lo: 48 hi: 77 deref_base: 19760 y_register: 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6651] | 0.22 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 61092, 149 61093, 223 61094, 70 223, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6403] | 0.62 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 4747, 241 4748, 166 4749, 47 166, 196 167, 135 34719, 41 34975, 3 base: 166 lo: 196 hi: 135 deref_base: 34756 y_register: 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6871] | 0.67 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 26334, 129 26335, 9 26336, 39 9, 142 126, 153 127, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6742] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 62019, 141 62020, 117 62021, 5 62022, 230 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6808] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 29843, 153 29844, 255 29845, 179 46070, 130 29846, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6791] | 0.44 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 57135, 157 57136, 231 57137, 207 53156, 27 57138, 66 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6690] | 0.34 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 40489, 149 40490, 215 40491, 191 215, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6842] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 49164, 153 49165, 24 49166, 198 50885, 109 49167, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6857] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 43540, 129 43541, 60 43542, 233 60, 144 23, 169 24, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6916] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 14775, 145 14776, 163 14777, 200 163, 17 164, 224 57395, 253 base: 163 lo: 17 hi: 224 deref_base: 57361 y_register: 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6930] | 0.54 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 6539, 145 6540, 2 6541, 105 2, 40 3, 238 60957, 198 base: 2 lo: 40 hi: 238 deref_base: 60968 y_register: 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6902] | 0.50 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 62667, 145 62668, 28 62669, 233 28, 106 29, 66 17095, 12 base: 28 lo: 106 hi: 66 deref_base: 17002 y_register: 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6887] | 0.65 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 51700, 129 51701, 170 51702, 6 170, 165 86, 240 87, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6776] | 0.53 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 38900, 157 38901, 93 38902, 78 20161, 41 38903, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6743] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 61026, 141 61027, 142 61028, 116 61029, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6670] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 3739, 149 3740, 120 3741, 86 120, 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6825] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 62844, 153 62845, 22 62846, 68 17651, 185 62847, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6729] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 45064, 141 45065, 139 45066, 90 45067, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6380] | 0.50 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 5887, 225 5888, 191 5889, 201 191, 109 36, 106 37, 247 63338, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6759] | 0.56 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 65460, 157 65461, 68 65462, 237 60845, 215 65463, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6432] | 0.63 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 34558, 241 34559, 84 34560, 174 84, 42 85, 108 27856, 195 base: 84 lo: 42 hi: 108 deref_base: 27690 y_register: 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6711] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 59872, 141 59873, 48 59874, 57 59875, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6809] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 24603, 153 24604, 113 24605, 225 57756, 104 24606, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6691] | 0.34 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 25440, 149 25441, 87 25442, 24 87, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6792] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 27676, 157 27677, 254 27678, 142 36448, 235 27679, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6843] | 0.43 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 30308, 153 30309, 229 30310, 63 16150, 1 30311, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6858] | 0.61 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 54043, 129 54044, 68 54045, 166 68, 236 37, 33 38, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6404] | 0.49 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 47613, 241 47614, 19 47615, 217 19, 190 20, 64 16577, 173 base: 19 lo: 190 hi: 64 deref_base: 16574 y_register: 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6917] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 19471, 145 19472, 203 19473, 48 203, 69 204, 93 23894, 245 base: 203 lo: 69 hi: 93 deref_base: 23877 y_register: 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6671] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 56075, 149 56076, 194 56077, 168 194, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6872] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 23863, 129 23864, 204 23865, 204 204, 101 157, 1 158, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6744] | 0.37 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 61395, 141 61396, 196 61397, 14 61398, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6712] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 63118, 141 63119, 160 63120, 233 63121, 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6730] | 0.53 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 32571, 141 32572, 24 32573, 234 32574, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6931] | 0.44 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 65427, 145 65428, 24 65429, 52 24, 183 25, 63 16173, 230 base: 24 lo: 183 hi: 63 deref_base: 16311 y_register: 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6903] | 0.56 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 50681, 145 50682, 136 50683, 24 136, 191 137, 53 13713, 241 base: 136 lo: 191 hi: 53 deref_base: 13759 y_register: 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6826] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 23810, 153 23811, 103 23812, 183 47030, 28 23813, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6777] | 0.50 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 56559, 157 56560, 27 56561, 250 64245, 147 56562, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6692] | 0.49 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 59004, 149 59005, 190 59006, 73 190, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6810] | 0.58 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 35759, 153 35760, 253 35761, 130 33496, 103 35762, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json-i6381] | 0.45 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/e1.json 49455, 225 49456, 202 49457, 87 202, 68 48, 181 49, 20 5301, 210 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6888] | 0.48 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 28337, 129 28338, 117 28339, 4 117, 175 190, 244 191, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6760] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 5279, 157 5280, 185 5281, 93 23871, 143 5282, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json-i6672] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/95.json 49329, 149 49330, 49 49331, 138 49, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6793] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 60953, 157 60954, 194 60955, 10 2748, 217 60956, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6844] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 49628, 153 49629, 16 49630, 45 11763, 253 49631, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6745] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 33212, 141 33213, 87 33214, 49 33215, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6433] | 0.49 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 21336, 241 21337, 230 21338, 42 230, 176 231, 58 14919, 193 15175, 141 base: 230 lo: 176 hi: 58 deref_base: 15024 y_register: 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6918] | 0.53 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 25043, 145 25044, 28 25045, 31 28, 179 29, 192 49284, 103 base: 28 lo: 179 hi: 192 deref_base: 49331 y_register: 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6944] | 0.59 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 776, 145 777, 255 778, 234 255, 238 0, 112 28714, 27 base: 255 lo: 238 hi: 112 deref_base: 28910 y_register: 60 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6405] | 0.45 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 61664, 241 61665, 148 61666, 5 148, 10 149, 185 47494, 10 base: 148 lo: 10 hi: 185 deref_base: 47370 y_register: 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6873] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 5109, 129 5110, 19 5111, 201 19, 34 94, 187 95, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6932] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 39407, 145 39408, 195 39409, 230 195, 45 196, 75 19358, 42 base: 195 lo: 45 hi: 75 deref_base: 19245 y_register: 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6827] | 0.56 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 9946, 153 9947, 156 9948, 109 28052, 181 9949, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6859] | 0.46 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 4676, 129 4677, 10 4678, 223 10, 24 174, 93 175, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6731] | 0.26 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 41663, 141 41664, 201 41665, 90 41666, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6778] | 0.48 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 63117, 157 63118, 163 63119, 191 49094, 145 63120, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6958] | 0.29 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 64836, 134 64837, 147 64838, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6904] | 0.51 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 50067, 145 50068, 221 50069, 31 221, 96 222, 145 37369, 22 base: 221 lo: 96 hi: 145 deref_base: 37216 y_register: 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6984] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 12931, 134 12932, 151 12933, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6971] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 46263, 134 46264, 110 46265, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6889] | 0.45 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 8930, 129 8931, 17 8932, 165 17, 96 240, 139 241, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6746] | 0.51 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 31340, 141 31341, 133 31342, 210 31343, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6794] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 12146, 157 12147, 104 12148, 161 41293, 17 12149, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6761] | 0.51 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 62100, 157 62101, 147 62102, 228 58510, 18 62103, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6811] | 0.48 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 11244, 153 11245, 38 11246, 238 61118, 99 11247, 183 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6845] | 0.55 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 35031, 153 35032, 205 35033, 151 38788, 147 35034, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6997] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 11226, 134 11227, 30 11228, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6406] | 0.55 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 59213, 241 59214, 66 59215, 175 66, 9 67, 226 57943, 95 base: 66 lo: 9 hi: 226 deref_base: 57865 y_register: 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6434] | 0.44 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 39835, 241 39836, 161 39837, 243 161, 157 162, 60 15394, 62 15650, 226 base: 161 lo: 157 hi: 60 deref_base: 15517 y_register: 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6874] | 0.59 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 42539, 129 42540, 251 42541, 91 251, 201 35, 165 36, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6919] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 43323, 145 43324, 166 43325, 226 166, 33 167, 49 12730, 235 base: 166 lo: 33 hi: 49 deref_base: 12577 y_register: 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6959] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 19875, 134 19876, 8 19877, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6945] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 42388, 145 42389, 73 42390, 112 73, 76 74, 169 43430, 79 base: 73 lo: 76 hi: 169 deref_base: 43340 y_register: 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6860] | 0.64 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 56466, 129 56467, 67 56468, 25 67, 8 234, 8 235, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6972] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 34610, 134 34611, 81 34612, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6985] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 26537, 134 26538, 161 26539, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6933] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 58421, 145 58422, 109 58423, 97 109, 109 110, 161 41217, 193 base: 109 lo: 109 hi: 161 deref_base: 41325 y_register: 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6828] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 22299, 153 22300, 179 22301, 28 7249, 146 22302, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6795] | 0.58 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 792, 157 793, 36 794, 237 60723, 109 795, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6779] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 3471, 157 3472, 61 3473, 42 10963, 128 3474, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6890] | 0.57 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 60962, 129 60963, 188 60964, 221 188, 185 156, 139 157, 1 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6905] | 0.60 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 36835, 145 36836, 235 36837, 86 235, 71 236, 127 32758, 124 base: 235 lo: 71 hi: 127 deref_base: 32583 y_register: 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6747] | 0.28 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 26287, 141 26288, 18 26289, 198 26290, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6998] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 32387, 134 32388, 27 32389, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6812] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 35880, 153 35881, 203 35882, 164 42093, 139 35883, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6762] | 0.47 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 24134, 157 24135, 220 24136, 2 532, 191 24137, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6960] | 0.22 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 28038, 134 28039, 76 28040, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6435] | 0.62 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 41240, 241 41241, 1 41242, 44 1, 54 2, 52 13567, 211 base: 1 lo: 54 hi: 52 deref_base: 13366 y_register: 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6846] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 4435, 153 4436, 221 4437, 166 42701, 223 4438, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6973] | 0.22 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 61332, 134 61333, 19 61334, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6920] | 0.59 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 53144, 145 53145, 230 53146, 80 230, 176 231, 35 9193, 91 base: 230 lo: 176 hi: 35 deref_base: 9136 y_register: 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6986] | 0.41 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 36050, 134 36051, 222 36052, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6407] | 0.46 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 373, 241 374, 89 375, 148 89, 205 90, 146 37518, 44 37774, 4 base: 89 lo: 205 hi: 146 deref_base: 37581 y_register: 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6946] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 7115, 145 7116, 83 7117, 99 83, 25 84, 110 28243, 39 base: 83 lo: 25 hi: 110 deref_base: 28185 y_register: 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6875] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 18568, 129 18569, 158 18570, 110 158, 8 128, 23 129, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6829] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 26350, 153 26351, 243 26352, 195 50062, 24 26353, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6961] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 5182, 134 5183, 135 5184, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6934] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 62986, 145 62987, 168 62988, 125 168, 169 169, 210 53846, 202 base: 168 lo: 169 hi: 210 deref_base: 53929 y_register: 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6748] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 55973, 141 55974, 61 55975, 91 55976, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6780] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 64677, 157 64678, 181 64679, 199 51049, 166 64680, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6974] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 5915, 134 5916, 205 5917, 160 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6999] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 42067, 134 42068, 105 42069, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6861] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 9762, 129 9763, 242 9764, 30 242, 130 60, 81 61, 113 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6796] | 0.45 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 65249, 157 65250, 236 65251, 249 63986, 77 65252, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6813] | 0.47 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 59697, 153 59698, 177 59699, 45 11581, 190 59700, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6891] | 0.50 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 35438, 129 35439, 103 35440, 232 103, 88 27, 34 28, 2 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6763] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 22576, 157 22577, 177 22578, 128 32839, 51 22579, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6847] | 0.44 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 17786, 153 17787, 160 17788, 72 18469, 154 17789, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6906] | 0.46 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 53553, 145 53554, 95 53555, 31 95, 213 96, 7 1950, 229 base: 95 lo: 213 hi: 7 deref_base: 2005 y_register: 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6987] | 0.24 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 19898, 134 19899, 93 19900, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6962] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 31584, 134 31585, 56 31586, 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json-i6749] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8d.json 58738, 141 58739, 98 58740, 120 58741, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6408] | 0.56 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 61611, 241 61612, 178 61613, 78 178, 220 179, 27 7003, 19 7259, 228 base: 178 lo: 220 hi: 27 deref_base: 7132 y_register: 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6436] | 0.46 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 47096, 241 47097, 217 47098, 64 217, 28 218, 127 32608, 34 base: 217 lo: 28 hi: 127 deref_base: 32540 y_register: 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6975] | 0.35 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 58330, 134 58331, 27 58332, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6876] | 0.55 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 43704, 129 43705, 214 43706, 111 214, 58 213, 129 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6830] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 64738, 153 64739, 32 64740, 152 38976, 109 64741, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6921] | 0.45 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 12598, 145 12599, 98 12600, 193 98, 105 99, 137 35172, 126 base: 98 lo: 105 hi: 137 deref_base: 35177 y_register: 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6781] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 12427, 157 12428, 224 12429, 148 37969, 145 12430, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7000] | 0.27 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 40932, 150 40933, 89 40934, 79 89, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6947] | 0.48 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 160, 145 161, 221 162, 209 221, 93 222, 108 27775, 202 base: 221 lo: 93 hi: 108 deref_base: 27741 y_register: 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6935] | 0.45 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 46229, 145 46230, 10 46231, 53 10, 120 11, 199 51165, 158 base: 10 lo: 120 hi: 199 deref_base: 51064 y_register: 101 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6862] | 0.69 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 23290, 129 23291, 177 23292, 79 177, 36 3, 109 4, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6988] | 0.34 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 3754, 134 3755, 197 3756, 218 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6797] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 2115, 157 2116, 78 2117, 121 31204, 190 2118, 244 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6814] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 65508, 153 65509, 6 65510, 13 3379, 229 65511, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6848] | 0.49 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 6791, 153 6792, 97 6793, 178 45680, 187 6794, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6764] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 12126, 157 12127, 17 12128, 176 45306, 208 12129, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6907] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 1666, 145 1667, 66 1668, 157 66, 85 67, 214 54999, 191 base: 66 lo: 85 hi: 214 deref_base: 54869 y_register: 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6892] | 0.56 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 34338, 129 34339, 148 34340, 247 148, 45 116, 164 117, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6963] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 54648, 134 54649, 59 54650, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6750] | 0.58 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 36083, 157 36084, 235 36085, 210 53997, 123 36086, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6976] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 3500, 134 3501, 17 3502, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7001] | 0.49 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 56074, 150 56075, 39 56076, 19 39, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6782] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 45798, 157 45799, 115 45800, 208 53311, 158 45801, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6831] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 46409, 153 46410, 116 46411, 129 33112, 61 46412, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7009] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 4885, 150 4886, 167 4887, 45 167, 156 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6989] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 13476, 134 13477, 174 13478, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6922] | 0.58 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 58936, 145 58937, 229 58938, 25 229, 54 230, 150 38454, 192 base: 229 lo: 54 hi: 150 deref_base: 38454 y_register: 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json-i6409] | 0.43 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/f1.json 32343, 241 32344, 209 32345, 109 209, 178 210, 208 53254, 16 53510, 116 base: 209 lo: 178 hi: 208 deref_base: 53426 y_register: 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6877] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 19990, 129 19991, 101 19992, 209 101, 114 237, 148 238, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6936] | 0.58 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 56638, 145 56639, 60 56640, 85 60, 240 61, 87 22420, 65 base: 60 lo: 240 hi: 87 deref_base: 22512 y_register: 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6948] | 0.56 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 9840, 145 9841, 36 9842, 123 36, 33 37, 190 48812, 194 base: 36 lo: 33 hi: 190 deref_base: 48673 y_register: 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6798] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 2821, 157 2822, 98 2823, 1 330, 150 2824, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6815] | 0.41 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 44653, 153 44654, 105 44655, 45 11762, 188 44656, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6964] | 0.28 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 58282, 134 58283, 90 58284, 107 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6908] | 0.57 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 31073, 145 31074, 83 31075, 104 83, 217 84, 105 27012, 124 base: 83 lo: 217 hi: 105 deref_base: 27097 y_register: 171 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6765] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 1894, 157 1895, 155 1896, 124 31910, 225 1897, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6977] | 0.25 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 17336, 134 17337, 219 17338, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6849] | 0.46 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 20197, 153 20198, 180 20199, 32 8212, 109 20200, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6783] | 0.59 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 27405, 157 27406, 177 27407, 111 28481, 136 27408, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6863] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 2924, 129 2925, 245 2926, 1 245, 54 111, 236 112, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6832] | 0.60 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 14020, 153 14021, 37 14022, 42 10831, 66 14023, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7002] | 0.26 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 9519, 150 9520, 161 9521, 114 161, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6893] | 0.47 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 38478, 129 38479, 128 38480, 105 128, 158 139, 96 140, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7010] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 13021, 150 13022, 109 13023, 107 109, 233 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6990] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 23545, 134 23546, 11 23547, 14 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7021] | 0.43 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 7997, 150 7998, 82 7999, 106 82, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7033] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 13664, 150 13665, 8 13666, 3 8, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6965] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 60535, 134 60536, 8 60537, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6978] | 0.33 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 7066, 134 7067, 239 7068, 30 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6878] | 0.59 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 62758, 129 62759, 244 62760, 156 244, 91 162, 154 163, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6923] | 0.49 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 64516, 145 64517, 228 64518, 159 228, 200 229, 234 60148, 173 base: 228 lo: 200 hi: 234 deref_base: 60104 y_register: 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6799] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 62473, 157 62474, 162 62475, 138 35497, 229 62476, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6816] | 0.54 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 64341, 153 64342, 220 64343, 9 2351, 175 64344, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6766] | 0.59 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 62400, 157 62401, 168 62402, 22 5881, 39 62403, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7003] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 30591, 150 30592, 232 30593, 72 232, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6991] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 38665, 134 38666, 231 38667, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6937] | 0.49 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 37126, 145 37127, 8 37128, 121 8, 161 9, 184 47315, 104 base: 8 lo: 161 hi: 184 deref_base: 47265 y_register: 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6949] | 0.51 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 35757, 145 35758, 65 35759, 10 65, 187 66, 6 1626, 28 base: 65 lo: 187 hi: 6 deref_base: 1723 y_register: 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7011] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 523, 150 524, 56 525, 68 56, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6850] | 0.45 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 11515, 129 11516, 56 11517, 182 56, 142 16, 45 17, 118 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6864] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 41228, 129 41229, 219 41230, 185 219, 178 245, 208 246, 84 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6909] | 0.47 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 65146, 145 65147, 56 65148, 201 56, 82 57, 213 54547, 21 base: 56 lo: 82 hi: 213 deref_base: 54610 y_register: 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6966] | 0.37 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 16247, 134 16248, 116 16249, 229 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6979] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 27427, 134 27428, 160 27429, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6894] | 0.57 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 39013, 129 39014, 94 39015, 234 94, 134 240, 205 241, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7034] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 14989, 150 14990, 78 14991, 18 78, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7022] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 45813, 150 45814, 172 45815, 238 172, 246 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6784] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 15199, 157 15200, 159 15201, 134 34343, 190 15202, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6833] | 0.44 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 35668, 153 35669, 55 35670, 217 55748, 214 35671, 250 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6800] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 45189, 153 45190, 248 45191, 183 46881, 82 45192, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7004] | 0.35 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 34086, 150 34087, 190 34088, 101 190, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6992] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 54131, 134 54132, 121 54133, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6924] | 0.47 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 42249, 145 42250, 245 42251, 125 245, 217 246, 35 9211, 217 base: 245 lo: 217 hi: 35 deref_base: 9177 y_register: 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7012] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 58562, 150 58563, 88 58564, 109 88, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7023] | 0.34 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 53162, 150 53163, 122 53164, 206 122, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6879] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 26867, 129 26868, 210 26869, 106 210, 15 235, 69 236, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6817] | 0.47 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 53574, 153 53575, 103 53576, 138 35389, 108 53577, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6938] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 35155, 145 35156, 182 35157, 62 182, 255 183, 228 58457, 16 base: 182 lo: 255 hi: 228 deref_base: 58623 y_register: 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6950] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 45098, 134 45099, 105 45100, 24 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6967] | 0.22 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 23737, 134 23738, 75 23739, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7035] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 24451, 150 24452, 167 24453, 66 167, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6851] | 0.61 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 5636, 129 5637, 74 5638, 188 74, 254 3, 2 4, 135 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6767] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 44730, 157 44731, 252 44732, 99 25394, 82 44733, 207 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6865] | 0.57 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 7107, 129 7108, 85 7109, 27 85, 219 121, 77 122, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6980] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 58910, 134 58911, 0 58912, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6910] | 0.59 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 26129, 145 26130, 215 26131, 20 215, 35 216, 54 14020, 141 base: 215 lo: 35 hi: 54 deref_base: 13859 y_register: 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6785] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 52309, 157 52310, 35 52311, 128 32835, 188 52312, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6834] | 0.45 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 49983, 153 49984, 97 49985, 27 7010, 113 49986, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7005] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 16945, 150 16946, 127 16947, 24 127, 34 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6993] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 6957, 134 6958, 86 6959, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6895] | 0.49 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 43708, 129 43709, 216 43710, 21 216, 207 28, 96 29, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6968] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 36243, 134 36244, 121 36245, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6801] | 0.61 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 44365, 153 44366, 183 44367, 119 30593, 166 44368, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7024] | 0.42 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 36939, 150 36940, 195 36941, 17 195, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6981] | 0.35 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 40493, 134 40494, 131 40495, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7013] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 65247, 150 65248, 219 65249, 31 219, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6925] | 0.56 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 22386, 145 22387, 221 22388, 114 221, 132 222, 52 13450, 106 base: 221 lo: 132 hi: 52 deref_base: 13444 y_register: 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7036] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 61378, 150 61379, 22 61380, 166 22, 70 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6880] | 0.60 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 42430, 129 42431, 16 42432, 35 16, 15 211, 61 212, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6939] | 0.56 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 35681, 145 35682, 214 35683, 220 214, 88 215, 202 51723, 6 base: 214 lo: 88 hi: 202 deref_base: 51800 y_register: 179 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6951] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 5116, 134 5117, 107 5118, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6818] | 0.43 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 26119, 153 26120, 207 26121, 103 26595, 55 26122, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6994] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 12390, 134 12391, 4 12392, 131 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6768] | 0.44 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 9328, 157 9329, 190 9330, 201 51522, 207 9331, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7006] | 0.53 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 42251, 150 42252, 246 42253, 72 246, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6969] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 49741, 134 49742, 195 49743, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json-i6786] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/9d.json 28539, 157 28540, 170 28541, 234 60013, 3 28542, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6866] | 0.67 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 29158, 129 29159, 87 29160, 176 87, 68 42, 129 43, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6852] | 0.65 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 21528, 129 21529, 16 21530, 175 16, 14 243, 147 244, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6835] | 0.43 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 7276, 153 7277, 147 7278, 194 49735, 255 7279, 50 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6982] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 18140, 134 18141, 220 18142, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6952] | 0.42 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 26724, 134 26725, 191 26726, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7014] | 0.42 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 43904, 150 43905, 169 43906, 187 169, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6911] | 0.44 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 9698, 145 9699, 186 9700, 84 186, 108 187, 130 33313, 40 base: 186 lo: 108 hi: 130 deref_base: 33388 y_register: 181 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7025] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 46817, 150 46818, 233 46819, 14 233, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6896] | 0.58 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 13528, 129 13529, 162 13530, 111 162, 100 231, 41 232, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7037] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 31607, 150 31608, 202 31609, 22 202, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6802] | 0.48 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 51872, 153 51873, 186 51874, 174 44643, 182 51875, 21 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6819] | 0.46 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 36192, 153 36193, 205 36194, 233 59839, 89 36195, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6995] | 0.44 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 57910, 134 57911, 36 57912, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7044] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 62131, 150 62132, 117 62133, 235 117, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6926] | 0.50 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 49439, 145 49440, 3 49441, 35 3, 219 4, 233 59703, 162 base: 3 lo: 219 hi: 233 deref_base: 59867 y_register: 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6940] | 0.48 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 55573, 145 55574, 188 55575, 102 188, 37 189, 75 19389, 246 base: 188 lo: 37 hi: 75 deref_base: 19237 y_register: 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6881] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 18935, 129 18936, 158 18937, 40 158, 188 73, 132 74, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6970] | 0.25 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 42387, 134 42388, 208 42389, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6983] | 0.32 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 16721, 134 16722, 34 16723, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7026] | 0.55 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 2983, 150 2984, 75 2985, 153 75, 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7055] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 54883, 142 54884, 119 54885, 143 54886, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6836] | 0.46 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 7639, 153 7640, 3 7641, 24 6322, 43 7642, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7015] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 7290, 150 7291, 141 7292, 12 141, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6953] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 59377, 134 59378, 181 59379, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7007] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 27642, 150 27643, 196 27644, 156 196, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6912] | 0.48 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 51711, 145 51712, 228 51713, 238 228, 103 229, 106 27333, 169 base: 228 lo: 103 hi: 106 deref_base: 27239 y_register: 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7038] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 15141, 150 15142, 89 15143, 123 89, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7066] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 43208, 142 43209, 141 43210, 233 43211, 88 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6853] | 0.52 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 4672, 129 4673, 209 4674, 152 209, 68 76, 216 77, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6867] | 0.49 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 20871, 129 20872, 138 20873, 34 138, 159 23, 137 24, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6897] | 0.47 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 41878, 129 41879, 7 41880, 169 7, 218 250, 55 251, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6996] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 1242, 134 1243, 149 1244, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6820] | 0.42 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 49638, 153 49639, 4 49640, 33 8663, 164 49641, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6954] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 48684, 134 48685, 200 48686, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6803] | 0.46 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 8086, 153 8087, 87 8088, 71 18207, 252 8089, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7077] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 58667, 142 58668, 119 58669, 155 58670, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7045] | 0.29 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 50004, 150 50005, 178 50006, 34 178, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7008] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 4255, 150 4256, 94 4257, 230 94, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6927] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 30240, 145 30241, 149 30242, 234 149, 79 150, 196 50403, 118 base: 149 lo: 79 hi: 196 deref_base: 50255 y_register: 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6941] | 0.57 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 36941, 145 36942, 35 36943, 249 35, 17 36, 149 38384, 122 base: 35 lo: 17 hi: 149 deref_base: 38161 y_register: 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6882] | 0.58 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 302, 129 303, 207 304, 82 207, 44 252, 139 253, 188 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7016] | 0.53 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 29873, 150 29874, 41 29875, 121 41, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7056] | 0.42 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 2370, 142 2371, 45 2372, 255 2373, 245 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6837] | 0.44 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 34464, 153 34465, 189 34466, 158 40525, 152 34467, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7087] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 58966, 142 58967, 79 58968, 173 58969, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7039] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 32288, 150 32289, 253 32290, 57 253, 32 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7027] | 0.25 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 46990, 150 46991, 219 46992, 140 219, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6913] | 0.57 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 63542, 145 63543, 1 63544, 47 1, 85 2, 72 18610, 7 base: 1 lo: 85 hi: 72 deref_base: 18517 y_register: 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7067] | 0.53 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 34040, 142 34041, 227 34042, 216 34043, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7046] | 0.39 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 32439, 150 32440, 240 32441, 136 240, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6955] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 54579, 134 54580, 231 54581, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7078] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 9130, 142 9131, 181 9132, 252 9133, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6821] | 0.43 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 21206, 153 21207, 201 21208, 83 21308, 181 21209, 220 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6898] | 0.61 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 15915, 129 15916, 118 15917, 95 118, 173 128, 56 129, 237 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6868] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 2169, 129 2170, 174 2171, 246 174, 163 111, 93 112, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6854] | 0.47 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 12765, 129 12766, 134 12767, 201 134, 137 48, 139 49, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6804] | 0.43 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 14117, 153 14118, 107 14119, 114 29421, 207 14120, 23 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7097] | 0.36 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 57311, 142 57312, 196 57313, 127 57314, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7028] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 63821, 150 63822, 219 63823, 254 219, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7057] | 0.45 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 27213, 142 27214, 171 27215, 107 27216, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7088] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 23245, 142 23246, 224 23247, 136 23248, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7040] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 12774, 150 12775, 11 12776, 185 11, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json-i6838] | 0.44 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/99.json 22799, 153 22800, 7 22801, 83 21406, 208 22802, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6928] | 0.49 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 4183, 145 4184, 190 4185, 228 190, 120 191, 215 55292, 223 base: 190 lo: 120 hi: 215 deref_base: 55160 y_register: 132 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7017] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 48230, 150 48231, 4 48232, 123 4, 15 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6942] | 0.43 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 29310, 145 29311, 82 29312, 216 82, 139 83, 7 1799, 93 base: 82 lo: 139 hi: 7 deref_base: 1931 y_register: 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6883] | 0.45 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 29881, 129 29882, 10 29883, 251 10, 54 247, 134 248, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6956] | 0.38 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 44791, 134 44792, 135 44793, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7047] | 0.48 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 5801, 150 5802, 23 5803, 228 23, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7079] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 21760, 142 21761, 132 21762, 114 21763, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7068] | 0.27 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 14370, 142 14371, 152 14372, 179 14373, 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6914] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 65400, 145 65401, 41 65402, 51 41, 16 42, 164 42035, 17 base: 41 lo: 16 hi: 164 deref_base: 42000 y_register: 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7107] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 18521, 132 18522, 103 18523, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7098] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 8, 142 9, 120 10, 126 11, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6869] | 0.64 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 7295, 129 7296, 151 7297, 32 151, 0 104, 5 105, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7126] | 0.42 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 38343, 132 38344, 231 38345, 158 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7029] | 0.37 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 6554, 150 6555, 238 6556, 106 238, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7117] | 0.34 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 50263, 132 50264, 209 50265, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7018] | 0.39 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 27680, 150 27681, 249 27682, 48 249, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7089] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 48790, 142 48791, 39 48792, 115 48793, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7041] | 0.37 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 50225, 150 50226, 46 50227, 154 46, 72 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7058] | 0.44 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 41187, 142 41188, 119 41189, 135 41190, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6899] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 764, 129 765, 120 766, 66 120, 28 231, 30 232, 4 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7135] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 33499, 132 33500, 136 33501, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7069] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 21295, 142 21296, 111 21297, 176 21298, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json-i6957] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/86.json 54405, 134 54406, 254 54407, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7080] | 0.38 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 28557, 142 28558, 207 28559, 98 28560, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6943] | 0.59 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 38748, 145 38749, 127 38750, 229 127, 3 128, 243 62357, 55 base: 127 lo: 3 hi: 243 deref_base: 62211 y_register: 146 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6929] | 0.57 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 18745, 145 18746, 153 18747, 158 153, 154 154, 200 51444, 208 base: 153 lo: 154 hi: 200 deref_base: 51354 y_register: 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6884] | 0.61 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 28100, 129 28101, 66 28102, 9 66, 53 16, 26 17, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7048] | 0.28 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 4754, 150 4755, 220 4756, 199 220, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7108] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 7165, 132 7166, 168 7167, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7099] | 0.53 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 58896, 142 58897, 195 58898, 81 58899, 29 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7030] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 26527, 150 26528, 55 26529, 140 55, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7118] | 0.37 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 60091, 132 60092, 116 60093, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6915] | 0.57 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 13830, 145 13831, 180 13832, 69 180, 140 181, 40 10336, 152 base: 180 lo: 140 hi: 40 deref_base: 10380 y_register: 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7127] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 63372, 132 63373, 184 63374, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7042] | 0.34 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 16695, 150 16696, 105 16697, 252 105, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7144] | 0.33 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 53751, 132 53752, 125 53753, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7090] | 0.50 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 34498, 142 34499, 7 34500, 143 34501, 9 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7019] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 62340, 150 62341, 23 62342, 45 23, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json-i6900] | 0.62 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/91.json 18971, 145 18972, 18 18973, 196 18, 29 19, 160 41083, 155 base: 18 lo: 29 hi: 160 deref_base: 40989 y_register: 94 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7136] | 0.38 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 14388, 132 14389, 181 14390, 44 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7059] | 0.43 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 9041, 142 9042, 19 9043, 137 9044, 180 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7070] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 63768, 142 63769, 248 63770, 223 63771, 87 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7081] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 61283, 142 61284, 132 61285, 149 61286, 161 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7049] | 0.39 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 30538, 150 30539, 122 30540, 249 122, 191 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6870] | 0.48 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 17230, 129 17231, 196 17232, 65 196, 128 242, 54 243, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7128] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 63525, 132 63526, 182 63527, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7031] | 0.55 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 11127, 150 11128, 195 11129, 49 195, 69 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7109] | 0.25 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 4576, 132 4577, 199 4578, 102 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7119] | 0.39 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 8912, 132 8913, 139 8914, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7145] | 0.40 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 62064, 132 62065, 218 62066, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7043] | 0.52 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 53961, 150 53962, 86 53963, 31 86, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7153] | 0.42 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 37181, 148 37182, 147 37183, 58 147, 31 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7161] | 0.43 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 48020, 148 48021, 73 48022, 157 73, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7020] | 0.36 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 2616, 150 2617, 26 2618, 229 26, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7100] | 0.23 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 21725, 132 21726, 89 21727, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json-i6885] | 0.44 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/81.json 9789, 129 9790, 64 9791, 71 64, 246 195, 229 196, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7071] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 51733, 142 51734, 101 51735, 87 51736, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7137] | 0.24 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 25796, 132 25797, 13 25798, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7169] | 0.41 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 5305, 148 5306, 27 5307, 151 27, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7082] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 55745, 142 55746, 138 55747, 6 55748, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7091] | 0.27 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 34541, 142 34542, 195 34543, 141 34544, 153 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7110] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 65495, 132 65496, 8 65497, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7060] | 0.24 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 44662, 142 44663, 190 44664, 146 44665, 239 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7050] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 5602, 142 5603, 40 5604, 108 5605, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7129] | 0.36 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 32517, 132 32518, 141 32519, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7185] | 0.44 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 13669, 148 13670, 23 13671, 128 23, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7101] | 0.41 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 64089, 132 64090, 17 64091, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7120] | 0.27 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 3515, 132 3516, 123 3517, 142 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7177] | 0.41 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 12468, 148 12469, 177 12470, 6 177, 99 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7146] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 57804, 132 57805, 37 57806, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7138] | 0.34 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 3160, 132 3161, 54 3162, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7200] | 0.56 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 18479, 140 18480, 63 18481, 194 18482, 49 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7154] | 0.26 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 42048, 148 42049, 139 42050, 63 139, 95 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7061] | 0.52 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 54387, 142 54388, 82 54389, 238 54390, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7092] | 0.37 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 28244, 142 28245, 9 28246, 222 28247, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7162] | 0.29 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 12374, 148 12375, 106 12376, 41 106, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json-i7032] | 0.32 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/96.json 16757, 150 16758, 50 16759, 235 50, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7072] | 0.49 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 31688, 142 31689, 122 31690, 84 31691, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7193] | 0.27 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 35032, 148 35033, 84 35034, 160 84, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7083] | 0.53 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 58165, 142 58166, 208 58167, 232 58168, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7207] | 0.46 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 41386, 140 41387, 113 41388, 253 41389, 252 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7111] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 24995, 132 24996, 23 24997, 254 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7170] | 0.40 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 35334, 148 35335, 199 35336, 188 199, 149 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7130] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 18143, 132 18144, 131 18145, 255 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7051] | 0.32 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 41667, 142 41668, 56 41669, 12 41670, 251 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7121] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 62590, 132 62591, 140 62592, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7147] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 53475, 132 53476, 65 53477, 58 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7155] | 0.33 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 51703, 148 51704, 133 51705, 105 133, 198 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7102] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 47569, 132 47570, 62 47571, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7139] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 51071, 132 51072, 82 51073, 67 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7186] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 62551, 148 62552, 215 62553, 251 215, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7163] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 41021, 148 41022, 117 41023, 38 117, 222 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7178] | 0.42 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 7054, 148 7055, 106 7056, 56 106, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7194] | 0.35 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 9103, 148 9104, 179 9105, 176 179, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7214] | 0.36 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 6165, 140 6166, 175 6167, 163 6168, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7093] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 45634, 142 45635, 111 45636, 38 45637, 124 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7131] | 0.32 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 12818, 132 12819, 180 12820, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7052] | 0.56 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 61354, 142 61355, 238 61356, 131 61357, 75 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7112] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 8902, 132 8903, 207 8904, 90 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7062] | 0.25 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 21070, 142 21071, 201 21072, 70 21073, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7201] | 0.25 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 2116, 140 2117, 82 2118, 244 2119, 187 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7103] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 32615, 132 32616, 103 32617, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7171] | 0.43 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 54081, 148 54082, 137 54083, 227 137, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7208] | 0.43 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 4944, 140 4945, 22 4946, 140 4947, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7122] | 0.25 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 39288, 132 39289, 18 39290, 159 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7073] | 0.31 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 40222, 142 40223, 218 40224, 171 40225, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7148] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 53047, 132 53048, 54 53049, 232 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7156] | 0.55 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 28164, 148 28165, 179 28166, 203 179, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7084] | 0.29 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 56246, 142 56247, 72 56248, 2 56249, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7164] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 51005, 148 51006, 89 51007, 32 89, 61 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7140] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 63574, 132 63575, 71 63576, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7195] | 0.38 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 9028, 148 9029, 130 9030, 127 130, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7215] | 0.38 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 19224, 140 19225, 159 19226, 147 19227, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7187] | 0.41 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 46010, 148 46011, 137 46012, 170 137, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7132] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 26110, 132 26111, 103 26112, 86 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7113] | 0.34 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 51270, 132 51271, 22 51272, 36 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7179] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 4748, 148 4749, 111 4750, 78 111, 127 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7063] | 0.41 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 38385, 142 38386, 234 38387, 160 38388, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7202] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 53912, 140 53913, 100 53914, 28 53915, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7094] | 0.52 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 10359, 142 10360, 77 10361, 25 10362, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7123] | 0.33 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 64195, 132 64196, 154 64197, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7074] | 0.40 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 3210, 142 3211, 112 3212, 123 3213, 35 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7104] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 2068, 132 2069, 202 2070, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7085] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 42165, 142 42166, 72 42167, 183 42168, 46 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7141] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 41855, 132 41856, 192 41857, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7172] | 0.45 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 42192, 148 42193, 11 42194, 23 11, 148 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7149] | 0.26 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 43883, 132 43884, 172 43885, 128 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7209] | 0.40 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 10757, 140 10758, 49 10759, 164 10760, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7165] | 0.37 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 36047, 148 36048, 245 36049, 240 245, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7053] | 0.25 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 36327, 142 36328, 5 36329, 229 36330, 119 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7114] | 0.39 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 34443, 132 34444, 58 34445, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7196] | 0.54 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 42389, 148 42390, 224 42391, 95 224, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7216] | 0.50 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 46523, 140 46524, 210 46525, 22 46526, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7133] | 0.26 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 61363, 132 61364, 232 61365, 105 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7124] | 0.35 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 5130, 132 5131, 246 5132, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7188] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 4182, 148 4183, 53 4184, 66 53, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7157] | 0.27 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 62334, 148 62335, 59 62336, 85 59, 82 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7180] | 0.40 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 4243, 148 4244, 3 4245, 234 3, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7203] | 0.40 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 62098, 140 62099, 198 62100, 168 62101, 206 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7064] | 0.35 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 40564, 142 40565, 220 40566, 97 40567, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7150] | 0.43 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 27400, 148 27401, 35 27402, 142 35, 173 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7105] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 33948, 132 33949, 177 33950, 234 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7086] | 0.40 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 4399, 142 4400, 214 4401, 213 4402, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7075] | 0.34 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 49534, 142 49535, 141 49536, 188 49537, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7142] | 0.36 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 55431, 132 55432, 20 55433, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7095] | 0.26 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 3844, 142 3845, 127 3846, 14 3847, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7054] | 0.37 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 33312, 142 33313, 13 33314, 52 33315, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7210] | 0.47 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 3577, 140 3578, 164 3579, 57 3580, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7134] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 39519, 132 39520, 30 39521, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7166] | 0.55 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 45741, 148 45742, 71 45743, 151 71, 17 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7158] | 0.34 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 14474, 148 14475, 152 14476, 127 152, 238 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7173] | 0.26 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 30564, 148 30565, 99 30566, 98 99, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7115] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 46342, 132 46343, 208 46344, 190 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7125] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 6434, 132 6435, 140 6436, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7106] | 0.38 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 15505, 132 15506, 91 15507, 3 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7065] | 0.34 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 8107, 142 8108, 80 8109, 241 8110, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7189] | 0.42 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 22531, 148 22532, 0 22533, 135 0, 97 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7181] | 0.44 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 62231, 148 62232, 44 62233, 130 44, 122 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7204] | 0.35 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 19752, 140 19753, 130 19754, 46 19755, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7096] | 0.38 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 12094, 142 12095, 6 12096, 42 12097, 112 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7217] | 0.27 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 18835, 140 18836, 226 18837, 92 18838, 205 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json-i7076] | 0.54 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8e.json 26627, 142 26628, 196 26629, 115 26630, 182 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7197] | 0.26 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 47041, 148 47042, 245 47043, 159 245, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7143] | 0.42 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 32422, 132 32423, 196 32424, 11 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7151] | 0.41 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 58887, 148 58888, 34 58889, 139 34, 6 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7221] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 43879, 140 43880, 237 43881, 14 43882, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7174] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 48307, 148 48308, 113 48309, 145 113, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7228] | 0.35 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 24583, 140 24584, 56 24585, 249 24586, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7235] | 0.39 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 52297, 140 52298, 150 52299, 135 52300, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7159] | 0.37 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 50364, 148 50365, 50 50366, 16 50, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7211] | 0.25 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 20196, 140 20197, 193 20198, 140 20199, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json-i7116] | 0.28 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/84.json 57013, 132 57014, 251 57015, 125 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7218] | 0.40 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 55567, 140 55568, 220 55569, 85 55570, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7198] | 0.40 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 53946, 148 53947, 45 53948, 224 45, 126 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7247] | 0.40 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 12896, 140 12897, 229 12898, 228 12899, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7253] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 39583, 170 39584, 19 39585, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7241] | 0.42 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 51989, 140 51990, 3 51991, 142 51992, 62 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7205] | 0.61 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 52834, 140 52835, 94 52836, 174 52837, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7167] | 0.25 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 49456, 148 49457, 100 49458, 123 100, 40 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7259] | 0.31 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 28837, 170 28838, 158 28839, 80 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7190] | 0.25 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 39756, 148 39757, 241 39758, 41 241, 0 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7182] | 0.29 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 40189, 148 40190, 81 40191, 2 81, 192 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7222] | 0.55 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 27991, 140 27992, 141 27993, 61 27994, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7229] | 0.56 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 27547, 140 27548, 42 27549, 193 27550, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7175] | 0.52 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 34433, 148 34434, 145 34435, 250 145, 137 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7271] | 0.23 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 54446, 170 54447, 218 54448, 228 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7152] | 0.39 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 31369, 148 31370, 105 31371, 5 105, 217 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7212] | 0.53 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 59530, 140 59531, 204 59532, 30 59533, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7160] | 0.49 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 62679, 148 62680, 192 62681, 105 192, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7276] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 60038, 170 60039, 87 60040, 79 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7236] | 0.33 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 30802, 140 30803, 22 30804, 231 30805, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7265] | 0.24 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 60814, 170 60815, 162 60816, 193 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7168] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 24719, 148 24720, 153 24721, 52 153, 39 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7191] | 0.45 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 31437, 148 31438, 190 31439, 115 190, 213 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7254] | 0.20 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 56407, 170 56408, 6 56409, 226 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7219] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 9654, 140 9655, 21 9656, 134 9657, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7199] | 0.39 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 45392, 148 45393, 131 45394, 164 131, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7248] | 0.44 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 31418, 140 31419, 240 31420, 81 31421, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7183] | 0.48 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 25821, 148 25822, 98 25823, 154 98, 144 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7272] | 0.35 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 39430, 170 39431, 22 39432, 138 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7260] | 0.22 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 47704, 170 47705, 212 47706, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7242] | 0.27 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 34935, 140 34936, 23 34937, 102 34938, 196 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7266] | 0.21 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 37955, 170 37956, 41 37957, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7281] | 0.34 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 15776, 170 15777, 38 15778, 216 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7255] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 62484, 170 62485, 102 62486, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7237] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 21228, 140 21229, 242 21230, 211 21231, 215 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7277] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 41388, 170 41389, 135 41390, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7261] | 0.39 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 33588, 170 33589, 147 33590, 114 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7176] | 0.27 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 35702, 148 35703, 252 35704, 168 252, 57 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7206] | 0.28 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 33266, 140 33267, 83 33268, 73 33269, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7223] | 0.30 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 37691, 140 37692, 61 37693, 142 37694, 162 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7291] | 0.36 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 25616, 170 25617, 36 25618, 200 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7230] | 0.30 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 11521, 140 11522, 152 11523, 104 11524, 115 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7286] | 0.29 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 30836, 170 30837, 48 30838, 143 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7267] | 0.35 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 28964, 170 28965, 43 28966, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7243] | 0.40 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 51521, 140 51522, 199 51523, 175 51524, 22 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7213] | 0.27 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 30923, 140 30924, 22 30925, 193 30926, 27 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7273] | 0.26 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 11927, 170 11928, 47 11929, 186 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7220] | 0.39 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 44273, 140 44274, 55 44275, 66 44276, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7296] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 24835, 170 24836, 187 24837, 77 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7192] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 16423, 148 16424, 102 16425, 216 102, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7249] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 20, 140 21, 250 22, 162 23, 253 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7278] | 0.36 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 17015, 170 17016, 166 17017, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json-i7184] | 0.31 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/94.json 46571, 148 46572, 125 46573, 196 125, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7282] | 0.27 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 8090, 170 8091, 53 8092, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7306] | 0.37 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 57300, 168 57301, 183 57302, 199 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7256] | 0.21 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 31001, 170 31002, 126 31003, 123 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7301] | 0.38 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 6226, 168 6227, 191 6228, 71 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7224] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 55369, 140 55370, 111 55371, 127 55372, 89 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7238] | 0.35 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 16120, 140 16121, 35 16122, 244 16123, 147 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7231] | 0.39 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 27914, 140 27915, 76 27916, 176 27917, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7262] | 0.21 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 37786, 170 37787, 46 37788, 121 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7274] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 16124, 170 16125, 206 16126, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7287] | 0.18 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 21709, 170 21710, 146 21711, 133 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7311] | 0.37 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 37647, 168 37648, 170 37649, 68 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7292] | 0.23 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 48198, 170 48199, 71 48200, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7268] | 0.22 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 38779, 170 38780, 143 38781, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7297] | 0.21 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 34323, 170 34324, 176 34325, 130 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7244] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 59006, 140 59007, 191 59008, 207 59009, 150 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7315] | 0.35 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 10530, 168 10531, 233 10532, 106 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7257] | 0.31 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 63788, 170 63789, 205 63790, 73 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7319] | 0.39 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 255, 168 256, 209 257, 241 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7283] | 0.35 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 13744, 170 13745, 160 13746, 96 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7323] | 0.39 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 44460, 168 44461, 123 44462, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7288] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 36270, 170 36271, 144 36272, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7279] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 45326, 170 45327, 191 45328, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7275] | 0.33 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 23192, 170 23193, 61 23194, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7263] | 0.36 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 50184, 170 50185, 34 50186, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7250] | 0.39 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 584, 170 585, 207 586, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7293] | 0.35 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 16117, 170 16118, 28 16119, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7307] | 0.19 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 62471, 168 62472, 92 62473, 109 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7269] | 0.39 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 13313, 170 13314, 224 13315, 81 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7298] | 0.33 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 36569, 170 36570, 197 36571, 219 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7302] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 50891, 168 50892, 252 50893, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7225] | 0.37 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 21217, 140 21218, 217 21219, 162 21220, 116 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7239] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 64376, 140 64377, 150 64378, 59 64379, 53 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7312] | 0.26 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 44678, 168 44679, 192 44680, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7232] | 0.38 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 29477, 140 29478, 78 29479, 97 29480, 155 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7280] | 0.37 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 48239, 170 48240, 154 48241, 19 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7258] | 0.20 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 37770, 170 37771, 50 37772, 141 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7316] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 14392, 168 14393, 156 14394, 108 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7245] | 0.54 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 17531, 140 17532, 47 17533, 19 17534, 163 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7308] | 0.39 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 5948, 168 5949, 48 5950, 43 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7284] | 0.24 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 18911, 170 18912, 138 18913, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7289] | 0.23 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 2736, 170 2737, 98 2738, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7327] | 0.22 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 12242, 168 12243, 81 12244, 197 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7320] | 0.24 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 64109, 168 64110, 141 64111, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7303] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 58230, 168 58231, 142 58232, 12 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7324] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 50446, 168 50447, 117 50448, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7264] | 0.21 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 61413, 170 61414, 169 61415, 134 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7251] | 0.22 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 47724, 170 47725, 146 47726, 195 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7294] | 0.25 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 62848, 170 62849, 110 62850, 120 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7313] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 26964, 168 26965, 141 26966, 154 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7299] | 0.22 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 1457, 170 1458, 210 1459, 208 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7335] | 0.31 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 20239, 168 20240, 108 20241, 45 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7270] | 0.23 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 49569, 170 49570, 182 49571, 189 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7226] | 0.36 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 45017, 140 45018, 226 45019, 195 45020, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7240] | 0.40 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 12197, 140 12198, 39 12199, 228 12200, 139 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7317] | 0.34 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 40777, 168 40778, 128 40779, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7328] | 0.37 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 46911, 168 46912, 96 46913, 37 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7285] | 0.31 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 17126, 170 17127, 224 17128, 164 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7233] | 0.36 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 53640, 140 53641, 5 53642, 213 53643, 167 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7339] | 0.33 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 7702, 168 7703, 255 7704, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7290] | 0.36 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 37050, 170 37051, 116 37052, 16 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7331] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 45126, 168 45127, 39 45128, 54 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7321] | 0.38 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 21625, 168 21626, 13 21627, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7325] | 0.32 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 50216, 168 50217, 143 50218, 157 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7252] | 0.34 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 23240, 170 23241, 191 23242, 47 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7300] | 0.32 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 23621, 168 23622, 212 23623, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json-i7295] | 0.34 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/aa.json 37404, 170 37405, 85 37406, 247 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7309] | 0.20 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 31654, 168 31655, 139 31656, 91 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7304] | 0.21 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 44036, 168 44037, 191 44038, 98 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7343] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 31533, 168 31534, 109 31535, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7336] | 0.24 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 27233, 168 27234, 143 27235, 93 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7314] | 0.23 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 40875, 168 40876, 242 40877, 165 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7332] | 0.40 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 30969, 168 30970, 229 30971, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7246] | 0.26 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 3946, 140 3947, 232 3948, 221 3949, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7227] | 0.52 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 55977, 140 55978, 26 55979, 228 55980, 231 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7318] | 0.19 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 31410, 168 31411, 254 31412, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7310] | 0.36 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 55142, 168 55143, 83 55144, 42 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7305] | 0.34 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 26625, 168 26626, 191 26627, 240 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7340] | 0.23 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 27495, 168 27496, 145 27497, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7329] | 0.20 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 39684, 168 39685, 74 39686, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json-i7234] | 0.53 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8c.json 35785, 140 35786, 61 35787, 215 35788, 209 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7326] | 0.20 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 41562, 168 41563, 30 41564, 172 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7347] | 0.31 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 25024, 168 25025, 202 25026, 236 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7322] | 0.19 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 30276, 168 30277, 179 30278, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7337] | 0.30 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 57643, 168 57644, 57 57645, 136 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7344] | 0.19 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 45893, 168 45894, 191 45895, 227 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7330] | 0.31 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 63310, 168 63311, 215 63312, 78 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7341] | 0.35 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 63773, 168 63774, 231 63775, 20 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7333] | 0.23 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 2718, 168 2719, 179 2720, 151 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7345] | 0.36 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 57541, 168 57542, 223 57543, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7348] | 0.23 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 25008, 168 25009, 114 25010, 56 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7338] | 0.24 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 50689, 168 50690, 217 50691, 224 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7334] | 0.38 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 55661, 168 55662, 143 55663, 55 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7349] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 25077, 168 25078, 3 25079, 145 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7342] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 30204, 168 30205, 125 30206, 85 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json-i7346] | 0.22 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/a8.json 10189, 168 10190, 32 10191, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7405] | 0.33 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 5, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 25576, 138 25577, 80 25578, 140 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7407] | 0.30 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 7, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 46205, 138 46206, 126 46207, 10 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7401] | 0.23 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 1, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 45845, 138 45846, 148 45847, 212 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7411] | 0.34 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 11, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 42593, 138 42594, 70 42595, 117 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7403] | 0.30 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 3, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 16994, 138 16995, 231 16996, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7409] | 0.30 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 9, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 64457, 138 64458, 115 64459, 92 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7415] | 0.32 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 15, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 32766, 138 32767, 202 32768, 194 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7400] | 0.21 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 0, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 4244, 138 4245, 203 4246, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7413] | 0.19 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 13, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 64736, 138 64737, 193 64738, 76 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7427] | 0.38 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 27, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 33737, 138 33738, 164 33739, 242 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7425] | 0.38 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 25, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 58328, 138 58329, 222 58330, 178 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7419] | 0.37 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 19, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 34489, 138 34490, 240 34491, 223 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7406] | 0.26 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 6, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 33912, 138 33913, 47 33914, 5 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7402] | 0.36 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 2, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 55430, 138 55431, 144 55432, 221 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7408] | 0.25 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 8, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 22089, 138 22090, 63 22091, 168 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7423] | 0.30 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 23, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 37665, 138 37666, 144 37667, 201 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7417] | 0.22 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 17, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 48065, 138 48066, 11 48067, 152 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7432] | 0.34 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 32, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 37409, 138 37410, 127 37411, 169 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7429] | 0.29 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 29, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 44070, 138 44071, 215 44072, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7421] | 0.25 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 21, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 36391, 138 36392, 131 36393, 64 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7404] | 0.29 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 4, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 61903, 138 61904, 154 61905, 184 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7414] | 0.38 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 14, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 1656, 138 1657, 239 1658, 185 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7412] | 0.24 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 12, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 3795, 138 3796, 32 3797, 211 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7433] | 0.40 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 33, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 11485, 138 11486, 99 11487, 83 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7435] | 0.33 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 35, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 44646, 138 44647, 142 44648, 74 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7410] | 0.35 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 10, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 896, 138 897, 255 898, 41 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7431] | 0.18 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 31, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 53257, 138 53258, 26 53259, 243 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7438] | 0.37 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 38, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 25210, 138 25211, 91 25212, 166 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7416] | 0.21 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 16, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 38998, 138 38999, 134 39000, 111 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7436] | 0.32 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 36, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 44820, 138 44821, 21 44822, 204 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7418] | 0.37 | |
|
[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw6] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 18, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 16713, 138 16714, 93 16715, 170 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7424] | 0.26 | |
|
[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw1] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 24, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 17769, 138 17770, 251 17771, 38 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7428] | 0.22 | |
|
[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw10] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 28, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 16782, 138 16783, 207 16784, 175 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7420] | 0.26 | |
|
[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw18] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 20, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 57942, 138 57943, 135 57944, 100 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7426] | 0.21 | |
|
[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw16] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 26, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 56762, 138 56763, 192 56764, 26 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7434] | 0.22 | |
|
[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw11] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 34, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 30089, 138 30090, 113 30091, 174 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7422] | 0.37 | |
|
[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw19] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 22, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 63784, 138 63785, 136 63786, 63 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7437] | 0.22 | |
|
[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw0] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 37, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 38453, 138 38454, 214 38455, 202 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7446] | 0.37 | |
|
[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw2] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 46, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 8206, 138 8207, 174 8208, 235 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7441] | 0.36 | |
|
[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw13] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 41, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 23581, 138 23582, 236 23583, 25 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7430] | 0.23 | |
|
[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw14] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 30, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 6014, 138 6015, 1 6016, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7440] | 0.23 | |
|
[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw8] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 40, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 27802, 138 27803, 239 27804, 48 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7439] | 0.24 | |
|
[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw12] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 39, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 11982, 138 11983, 40 11984, 33 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7449] | 0.39 | |
|
[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw3] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 49, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 45779, 138 45780, 166 45781, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7443] | 0.25 | |
|
[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw5] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 43, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 20719, 138 20720, 206 20721, 8 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7445] | 0.27 | |
|
[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw15] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 45, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 45089, 138 45090, 89 45091, 177 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7442] | 0.24 | |
|
[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw9] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 42, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 51064, 138 51065, 49 51066, 52 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7444] | 0.25 | |
|
[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw17] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 44, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 52850, 138 52851, 136 52852, 214 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7447] | 0.26 | |
|
[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw7] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 47, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 26627, 138 26628, 157 26629, 110 | |||
| Passed | tests/test_cpu.py::test_daveNES[/Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json-i7448] | 0.24 | |
|
[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python [gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python[gw4] darwin -- Python 3.10.8 /opt/miniconda3/envs/py310_davenes/bin/python ------------------------------Captured stdout call------------------------------ ind: 48, filename: /Users/davidkersh/Documents/Other_Work/Coding/daveNES/tests/ProcessorTests-main/nes6502/v1/8a.json 17191, 138 17192, 226 17193, 231 | |||